Issue with Bluetooth on laptop

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

I was getting close as I could send files from pc to phone but not the other way. I shutdown and restarted and nothing wanted to work. Did some more googling and found something that worked for me

I created ath9k.conf in /etc/modprobe.d/ using

Code: Select all

sudo gedit /etc/modprobe.d/ath9k.conf
The only thing I put in this file is

Code: Select all

option ath9k btcoex_enable=1
Did another shutdown and boot and I can send files bidirectional now
novren

Re: Issue with Bluetooth on laptop

Post by novren »

JeremyB wrote:I was getting close as I could send files from pc to phone but not the other way. I shutdown and restarted and nothing wanted to work. Did some more googling and found something that worked for me

I created ath9k.conf in /etc/modprobe.d/ using

Code: Select all

sudo gedit /etc/modprobe.d/ath9k.conf
The only thing I put in this file is

Code: Select all

option ath9k btcoex_enable=1
Did another shutdown and boot and I can send files bidirectional now
Thank you, but I don't think that is my problem: I can't even connect to my phone, let alone transfer files either way. I'll try what you said, but I don't think it'll work.
novren

Re: Issue with Bluetooth on laptop

Post by novren »

JeremyB wrote:I was getting close as I could send files from pc to phone but not the other way. I shutdown and restarted and nothing wanted to work. Did some more googling and found something that worked for me

I created ath9k.conf in /etc/modprobe.d/ using

Code: Select all

sudo gedit /etc/modprobe.d/ath9k.conf
The only thing I put in this file is

Code: Select all

option ath9k btcoex_enable=1
Did another shutdown and boot and I can send files bidirectional now
Nope, not working.
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

novren wrote:
JeremyB wrote:I was getting close as I could send files from pc to phone but not the other way. I shutdown and restarted and nothing wanted to work. Did some more googling and found something that worked for me

I created ath9k.conf in /etc/modprobe.d/ using

Code: Select all

sudo gedit /etc/modprobe.d/ath9k.conf
The only thing I put in this file is

Code: Select all

option ath9k btcoex_enable=1
Did another shutdown and boot and I can send files bidirectional now
Nope, not working.
None of this makes any sense. Using the Live DVDs with LM16 Cinnamon and Mate, I have no trouble with bluetooth connecting and sending files. But after the install, it has been a headache. A bluetooth USB dongle works without fail for whatever reason
novren

Re: Issue with Bluetooth on laptop

Post by novren »

Actually, I DID have trouble with bluetooth even in the Live USB. So I really don't know. Worst part is, I fixed it las time, I just can't remember how.
novren

Re: Issue with Bluetooth on laptop

Post by novren »

Anyone, please? I'm running out of ideas and I don't want to touch around too much for fear of screwing up again.
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

Here is the result of lsmod | grep ath minus a couple lines that have nothing to do with Atheros

Code: Select all

 lsmod | grep ath
ath9k                 161126  0 
ath9k_common           13551  1 ath9k
ath9k_hw              454390  2 ath9k_common,ath9k
ath3k                  13368  0 
ath                    29397  3 ath9k_common,ath9k,ath9k_hw
mac80211              672673  1 ath9k
bluetooth             422749  23 bnep,ath3k,btusb,rfcomm
cfg80211              526052  3 ath,ath9k,mac80211
The ath3k is a bluetooth module for the Atheros bluetooth we seem to have. Is ath3k listed in /etc/modprobe.d/ in a blacklist file?

Check to see if you have package firmware-atheros installed

Or even linux-firmware as both have ath3k--new edit
novren

Re: Issue with Bluetooth on laptop

Post by novren »

JeremyB wrote:Here is the result of lsmod | grep ath minus a couple lines that have nothing to do with Atheros

Code: Select all

 lsmod | grep ath
ath9k                 161126  0 
ath9k_common           13551  1 ath9k
ath9k_hw              454390  2 ath9k_common,ath9k
ath3k                  13368  0 
ath                    29397  3 ath9k_common,ath9k,ath9k_hw
mac80211              672673  1 ath9k
bluetooth             422749  23 bnep,ath3k,btusb,rfcomm
cfg80211              526052  3 ath,ath9k,mac80211
The ath3k is a bluetooth module for the Atheros bluetooth we seem to have. Is ath3k listed in /etc/modprobe.d/ in a blacklist file?

Check to see if you have package firmware-atheros installed

Or even linux-firmware as both have ath3k--new edit

I do have linux-firmware installed, but firmware-atheros cannot be found by sudo apt-get install. Do I need to add a PPA?

As for the lsmod | grep ath

Code: Select all

novren@novren-linux-ente69kb:~$ lsmod | grep ath
dm_multipath           27401  0 
scsi_dh                14873  1 dm_multipath
ath9k                 166632  0 
ath9k_common           13551  1 ath9k
ath9k_hw              462940  2 ath9k_common,ath9k
ath                    29145  3 ath9k_common,ath9k,ath9k_hw
mac80211              654074  1 ath9k
cfg80211              509407  3 ath,ath9k,mac80211
novren

Re: Issue with Bluetooth on laptop

Post by novren »

It seems to me that I am missing ath3k. Is that the problem? And if so, how could I fix it?
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Post by JeremyB »

lsusb -v -d 04f2:b3f6
I wonder if the Chicony device from lsusb isn't your missing bluetooth

Most likely a webcam
Last edited by JeremyB on Tue May 06, 2014 2:01 pm, edited 1 time in total.
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Re: Issue with Bluetooth on laptop

Post by JeremyB »

novren wrote:It seems to me that I am missing ath3k. Is that the problem? And if so, how could I fix it?
modprobe ath3k
And you will likely need btusb also
modprobe btusb

I cant believe I haven't asked you to run

Code: Select all

cat /var/log/syslog | grep ath
or

Code: Select all

 dmesg | grep ath
or

Code: Select all

cat /var/log/kern.log | grep Bluetooth
And since you say you fixed this once before, and if you have done a reinstall over the other, try history in terminal or output the results to a text file

Code: Select all

history > bash-history.txt
and you should find the bash-history file in your home directory
novren

Re: Issue with Bluetooth on laptop

Post by novren »

OK, the modprobe codes didn't work at all. Firstly, the ath3k one gave me an error on /etc/modprobe.d/ath9k.conf , so I deleted the line I had edited some posts ago. Then modprobed again ath3k and btusb, nothing changed.

As for the outputs:

Code: Select all

cat /var/log/syslog | grep ath
May  7 12:34:35 novren-linux-ente69kb kernel: [    3.095642] Loaded X.509 cert 'Magrathea: Glacier signing key: 5e868026e3f492f8528b2aba5b00cab093547813'
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.153352] ath: phy0: WB335 2-ANT card detected
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.153359] ath: phy0: Set BT/WLAN RX diversity capability
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.160298] ath: phy0: Enable LNA combining
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.161739] ath: phy0: ASPM enabled: 0x42
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.161745] ath: EEPROM regdomain: 0x65
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.161748] ath: EEPROM indicates we should expect a direct regpair map
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.161753] ath: Country alpha2 being used: 00
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.161756] ath: Regpair used: 0x65
May  7 12:34:35 novren-linux-ente69kb kernel: [   15.559781] device-mapper: multipath: version 1.6.0 loaded
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.2/0000:01:00.0/net/eth0, iface: eth0)
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.2/0000:01:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:05:00.0/net/wlan0, iface: wlan0)
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:02.3/0000:05:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.3/0000:05:00.0/ieee80211/phy0/rfkill1) (driver ath9k)
May  7 12:34:39 novren-linux-ente69kb NetworkManager[925]: <info> (wlan0): new 802.11 WiFi device (driver: 'ath9k' ifindex: 3)
May  7 12:35:31 novren-linux-ente69kb bluetoothd[894]: Endpoint registered: sender=:1.45 path=/MediaEndpoint/HFPAG
May  7 12:35:31 novren-linux-ente69kb bluetoothd[894]: Endpoint registered: sender=:1.45 path=/MediaEndpoint/HFPHS
May  7 12:35:31 novren-linux-ente69kb bluetoothd[894]: Endpoint registered: sender=:1.45 path=/MediaEndpoint/A2DPSource
May  7 12:35:31 novren-linux-ente69kb bluetoothd[894]: Endpoint registered: sender=:1.45 path=/MediaEndpoint/A2DPSink
May  7 12:35:57 novren-linux-ente69kb bluetoothd[894]: Endpoint unregistered: sender=:1.45 path=/MediaEndpoint/HFPAG
May  7 12:35:57 novren-linux-ente69kb bluetoothd[894]: Endpoint unregistered: sender=:1.45 path=/MediaEndpoint/HFPHS
May  7 12:35:57 novren-linux-ente69kb bluetoothd[894]: Endpoint unregistered: sender=:1.45 path=/MediaEndpoint/A2DPSource
May  7 12:35:57 novren-linux-ente69kb bluetoothd[894]: Endpoint unregistered: sender=:1.45 path=/MediaEndpoint/A2DPSink
May  7 12:38:07 novren-linux-ente69kb kernel: [  236.336204] usbcore: registered new interface driver ath3k

Code: Select all

dmesg | grep ath
[    3.095642] Loaded X.509 cert 'Magrathea: Glacier signing key: 5e868026e3f492f8528b2aba5b00cab093547813'
[   15.153352] ath: phy0: WB335 2-ANT card detected
[   15.153359] ath: phy0: Set BT/WLAN RX diversity capability
[   15.160298] ath: phy0: Enable LNA combining
[   15.161739] ath: phy0: ASPM enabled: 0x42
[   15.161745] ath: EEPROM regdomain: 0x65
[   15.161748] ath: EEPROM indicates we should expect a direct regpair map
[   15.161753] ath: Country alpha2 being used: 00
[   15.161756] ath: Regpair used: 0x65
[   15.559781] device-mapper: multipath: version 1.6.0 loaded
[  236.336204] usbcore: registered new interface driver ath3k

Code: Select all

cat /var/log/kern.log | grep Bluetooth
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.220801] Bluetooth: Core ver 2.16
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.220853] Bluetooth: HCI device and connection manager initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.220869] Bluetooth: HCI socket layer initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.220875] Bluetooth: L2CAP socket layer initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.220888] Bluetooth: SCO socket layer initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.338898] Bluetooth: RFCOMM TTY layer initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.338925] Bluetooth: RFCOMM socket layer initialized
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.338930] Bluetooth: RFCOMM ver 1.11
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.798733] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.798742] Bluetooth: BNEP filters: protocol multicast
May  4 03:09:17 novren-linux-ente69kb kernel: [   10.798762] Bluetooth: BNEP socket layer initialized
May  4 03:35:06 novren-linux-ente69kb kernel: [   20.889259] Bluetooth: Core ver 2.17
May  4 03:35:06 novren-linux-ente69kb kernel: [   20.889324] Bluetooth: HCI device and connection manager initialized
May  4 03:35:06 novren-linux-ente69kb kernel: [   20.889343] Bluetooth: HCI socket layer initialized
May  4 03:35:06 novren-linux-ente69kb kernel: [   20.889350] Bluetooth: L2CAP socket layer initialized
May  4 03:35:06 novren-linux-ente69kb kernel: [   20.889361] Bluetooth: SCO socket layer initialized
May  4 03:35:06 novren-linux-ente69kb kernel: [   21.513232] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 03:35:06 novren-linux-ente69kb kernel: [   21.513241] Bluetooth: BNEP filters: protocol multicast
May  4 03:35:06 novren-linux-ente69kb kernel: [   21.513259] Bluetooth: BNEP socket layer initialized
May  4 03:35:07 novren-linux-ente69kb kernel: [   21.656767] Bluetooth: RFCOMM TTY layer initialized
May  4 03:35:07 novren-linux-ente69kb kernel: [   21.656791] Bluetooth: RFCOMM socket layer initialized
May  4 03:35:07 novren-linux-ente69kb kernel: [   21.656809] Bluetooth: RFCOMM ver 1.11
May  4 09:31:51 novren-linux-ente69kb kernel: [   21.222786] Bluetooth: Core ver 2.17
May  4 09:31:51 novren-linux-ente69kb kernel: [   21.222852] Bluetooth: HCI device and connection manager initialized
May  4 09:31:51 novren-linux-ente69kb kernel: [   21.222870] Bluetooth: HCI socket layer initialized
May  4 09:31:51 novren-linux-ente69kb kernel: [   21.222877] Bluetooth: L2CAP socket layer initialized
May  4 09:31:51 novren-linux-ente69kb kernel: [   21.222889] Bluetooth: SCO socket layer initialized
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.023156] Bluetooth: RFCOMM TTY layer initialized
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.023180] Bluetooth: RFCOMM socket layer initialized
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.023198] Bluetooth: RFCOMM ver 1.11
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.146677] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.146686] Bluetooth: BNEP filters: protocol multicast
May  4 09:31:52 novren-linux-ente69kb kernel: [   22.146706] Bluetooth: BNEP socket layer initialized
May  4 09:38:36 novren-linux-ente69kb kernel: [   20.977323] Bluetooth: Core ver 2.17
May  4 09:38:36 novren-linux-ente69kb kernel: [   20.977381] Bluetooth: HCI device and connection manager initialized
May  4 09:38:36 novren-linux-ente69kb kernel: [   20.977398] Bluetooth: HCI socket layer initialized
May  4 09:38:36 novren-linux-ente69kb kernel: [   20.977405] Bluetooth: L2CAP socket layer initialized
May  4 09:38:36 novren-linux-ente69kb kernel: [   20.977415] Bluetooth: SCO socket layer initialized
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.190079] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.190088] Bluetooth: BNEP filters: protocol multicast
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.190107] Bluetooth: BNEP socket layer initialized
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.311669] Bluetooth: RFCOMM TTY layer initialized
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.311694] Bluetooth: RFCOMM socket layer initialized
May  4 09:38:37 novren-linux-ente69kb kernel: [   22.311708] Bluetooth: RFCOMM ver 1.11
May  4 10:27:10 novren-linux-ente69kb kernel: [   22.153247] Bluetooth: Core ver 2.17
May  4 10:27:10 novren-linux-ente69kb kernel: [   22.153308] Bluetooth: HCI device and connection manager initialized
May  4 10:27:10 novren-linux-ente69kb kernel: [   22.153325] Bluetooth: HCI socket layer initialized
May  4 10:27:10 novren-linux-ente69kb kernel: [   22.153333] Bluetooth: L2CAP socket layer initialized
May  4 10:27:10 novren-linux-ente69kb kernel: [   22.153345] Bluetooth: SCO socket layer initialized
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.110512] Bluetooth: RFCOMM TTY layer initialized
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.110535] Bluetooth: RFCOMM socket layer initialized
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.110549] Bluetooth: RFCOMM ver 1.11
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.144796] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.144806] Bluetooth: BNEP filters: protocol multicast
May  4 10:27:13 novren-linux-ente69kb kernel: [   25.144825] Bluetooth: BNEP socket layer initialized
May  4 10:47:08 novren-linux-ente69kb kernel: [ 1221.155422] Bluetooth: hci0 command 0x0401 tx timeout
May  4 12:42:08 novren-linux-ente69kb kernel: [   22.591573] Bluetooth: Core ver 2.17
May  4 12:42:08 novren-linux-ente69kb kernel: [   22.591633] Bluetooth: HCI device and connection manager initialized
May  4 12:42:08 novren-linux-ente69kb kernel: [   22.591651] Bluetooth: HCI socket layer initialized
May  4 12:42:08 novren-linux-ente69kb kernel: [   22.591658] Bluetooth: L2CAP socket layer initialized
May  4 12:42:08 novren-linux-ente69kb kernel: [   22.591669] Bluetooth: SCO socket layer initialized
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.658913] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.658923] Bluetooth: BNEP filters: protocol multicast
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.658941] Bluetooth: BNEP socket layer initialized
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.769190] Bluetooth: RFCOMM TTY layer initialized
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.769215] Bluetooth: RFCOMM socket layer initialized
May  4 12:42:10 novren-linux-ente69kb kernel: [   28.769228] Bluetooth: RFCOMM ver 1.11
May  4 16:54:17 novren-linux-ente69kb kernel: [   25.290225] Bluetooth: Core ver 2.17
May  4 16:54:17 novren-linux-ente69kb kernel: [   25.290283] Bluetooth: HCI device and connection manager initialized
May  4 16:54:17 novren-linux-ente69kb kernel: [   25.290300] Bluetooth: HCI socket layer initialized
May  4 16:54:17 novren-linux-ente69kb kernel: [   25.290306] Bluetooth: L2CAP socket layer initialized
May  4 16:54:17 novren-linux-ente69kb kernel: [   25.290317] Bluetooth: SCO socket layer initialized
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.630429] Bluetooth: RFCOMM TTY layer initialized
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.630453] Bluetooth: RFCOMM socket layer initialized
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.630466] Bluetooth: RFCOMM ver 1.11
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.635181] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.635187] Bluetooth: BNEP filters: protocol multicast
May  4 16:54:19 novren-linux-ente69kb kernel: [   31.635203] Bluetooth: BNEP socket layer initialized
May  4 17:03:20 novren-linux-ente69kb kernel: [   22.165788] Bluetooth: Core ver 2.17
May  4 17:03:20 novren-linux-ente69kb kernel: [   22.165861] Bluetooth: HCI device and connection manager initialized
May  4 17:03:20 novren-linux-ente69kb kernel: [   22.165879] Bluetooth: HCI socket layer initialized
May  4 17:03:20 novren-linux-ente69kb kernel: [   22.165886] Bluetooth: L2CAP socket layer initialized
May  4 17:03:20 novren-linux-ente69kb kernel: [   22.165897] Bluetooth: SCO socket layer initialized
May  4 17:03:22 novren-linux-ente69kb kernel: [   28.433134] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 17:03:22 novren-linux-ente69kb kernel: [   28.433142] Bluetooth: BNEP filters: protocol multicast
May  4 17:03:22 novren-linux-ente69kb kernel: [   28.433161] Bluetooth: BNEP socket layer initialized
May  4 17:03:23 novren-linux-ente69kb kernel: [   28.754317] Bluetooth: RFCOMM TTY layer initialized
May  4 17:03:23 novren-linux-ente69kb kernel: [   28.754341] Bluetooth: RFCOMM socket layer initialized
May  4 17:03:23 novren-linux-ente69kb kernel: [   28.754353] Bluetooth: RFCOMM ver 1.11
May  4 18:37:27 novren-linux-ente69kb kernel: [   22.562377] Bluetooth: Core ver 2.17
May  4 18:37:27 novren-linux-ente69kb kernel: [   22.562425] Bluetooth: HCI device and connection manager initialized
May  4 18:37:27 novren-linux-ente69kb kernel: [   22.562442] Bluetooth: HCI socket layer initialized
May  4 18:37:27 novren-linux-ente69kb kernel: [   22.562449] Bluetooth: L2CAP socket layer initialized
May  4 18:37:27 novren-linux-ente69kb kernel: [   22.562460] Bluetooth: SCO socket layer initialized
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.118287] Bluetooth: RFCOMM TTY layer initialized
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.118311] Bluetooth: RFCOMM socket layer initialized
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.118324] Bluetooth: RFCOMM ver 1.11
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.129046] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.129055] Bluetooth: BNEP filters: protocol multicast
May  4 18:37:29 novren-linux-ente69kb kernel: [   34.129074] Bluetooth: BNEP socket layer initialized
May  4 19:00:47 novren-linux-ente69kb kernel: [   22.873972] Bluetooth: Core ver 2.17
May  4 19:00:47 novren-linux-ente69kb kernel: [   22.874042] Bluetooth: HCI device and connection manager initialized
May  4 19:00:47 novren-linux-ente69kb kernel: [   22.874059] Bluetooth: HCI socket layer initialized
May  4 19:00:47 novren-linux-ente69kb kernel: [   22.874066] Bluetooth: L2CAP socket layer initialized
May  4 19:00:47 novren-linux-ente69kb kernel: [   22.874076] Bluetooth: SCO socket layer initialized
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.018161] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.018169] Bluetooth: BNEP filters: protocol multicast
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.018201] Bluetooth: BNEP socket layer initialized
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.272812] Bluetooth: RFCOMM TTY layer initialized
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.272837] Bluetooth: RFCOMM socket layer initialized
May  4 19:00:49 novren-linux-ente69kb kernel: [   33.272850] Bluetooth: RFCOMM ver 1.11
May  4 20:03:31 novren-linux-ente69kb kernel: [   11.900447] Bluetooth: Core ver 2.17
May  4 20:03:31 novren-linux-ente69kb kernel: [   11.901530] Bluetooth: HCI device and connection manager initialized
May  4 20:03:31 novren-linux-ente69kb kernel: [   11.901550] Bluetooth: HCI socket layer initialized
May  4 20:03:31 novren-linux-ente69kb kernel: [   11.901556] Bluetooth: L2CAP socket layer initialized
May  4 20:03:31 novren-linux-ente69kb kernel: [   11.901574] Bluetooth: SCO socket layer initialized
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.623730] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.623739] Bluetooth: BNEP filters: protocol multicast
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.623757] Bluetooth: BNEP socket layer initialized
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.844862] Bluetooth: RFCOMM TTY layer initialized
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.844885] Bluetooth: RFCOMM socket layer initialized
May  4 20:03:33 novren-linux-ente69kb kernel: [   18.844899] Bluetooth: RFCOMM ver 1.11
May  4 22:05:38 novren-linux-ente69kb kernel: [   12.162866] Bluetooth: Core ver 2.17
May  4 22:05:38 novren-linux-ente69kb kernel: [   12.162934] Bluetooth: HCI device and connection manager initialized
May  4 22:05:38 novren-linux-ente69kb kernel: [   12.162954] Bluetooth: HCI socket layer initialized
May  4 22:05:38 novren-linux-ente69kb kernel: [   12.162960] Bluetooth: L2CAP socket layer initialized
May  4 22:05:38 novren-linux-ente69kb kernel: [   12.162971] Bluetooth: SCO socket layer initialized
May  4 22:05:40 novren-linux-ente69kb kernel: [   18.985384] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 22:05:40 novren-linux-ente69kb kernel: [   18.985394] Bluetooth: BNEP filters: protocol multicast
May  4 22:05:40 novren-linux-ente69kb kernel: [   18.985414] Bluetooth: BNEP socket layer initialized
May  4 22:05:40 novren-linux-ente69kb kernel: [   19.006095] Bluetooth: RFCOMM TTY layer initialized
May  4 22:05:40 novren-linux-ente69kb kernel: [   19.006120] Bluetooth: RFCOMM socket layer initialized
May  4 22:05:40 novren-linux-ente69kb kernel: [   19.006134] Bluetooth: RFCOMM ver 1.11
May  4 22:16:05 novren-linux-ente69kb kernel: [   12.947725] Bluetooth: Core ver 2.17
May  4 22:16:05 novren-linux-ente69kb kernel: [   12.947783] Bluetooth: HCI device and connection manager initialized
May  4 22:16:05 novren-linux-ente69kb kernel: [   12.947801] Bluetooth: HCI socket layer initialized
May  4 22:16:05 novren-linux-ente69kb kernel: [   12.947807] Bluetooth: L2CAP socket layer initialized
May  4 22:16:05 novren-linux-ente69kb kernel: [   12.947819] Bluetooth: SCO socket layer initialized
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.159092] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.159101] Bluetooth: BNEP filters: protocol multicast
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.159119] Bluetooth: BNEP socket layer initialized
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.170049] Bluetooth: RFCOMM TTY layer initialized
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.170073] Bluetooth: RFCOMM socket layer initialized
May  4 22:16:06 novren-linux-ente69kb kernel: [   22.170088] Bluetooth: RFCOMM ver 1.11
May  4 22:29:03 novren-linux-ente69kb kernel: [   12.512255] Bluetooth: Core ver 2.17
May  4 22:29:03 novren-linux-ente69kb kernel: [   12.512310] Bluetooth: HCI device and connection manager initialized
May  4 22:29:03 novren-linux-ente69kb kernel: [   12.512330] Bluetooth: HCI socket layer initialized
May  4 22:29:03 novren-linux-ente69kb kernel: [   12.512337] Bluetooth: L2CAP socket layer initialized
May  4 22:29:03 novren-linux-ente69kb kernel: [   12.512349] Bluetooth: SCO socket layer initialized
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.300873] Bluetooth: RFCOMM TTY layer initialized
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.300896] Bluetooth: RFCOMM socket layer initialized
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.300910] Bluetooth: RFCOMM ver 1.11
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.590491] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.590500] Bluetooth: BNEP filters: protocol multicast
May  4 22:29:05 novren-linux-ente69kb kernel: [   19.590533] Bluetooth: BNEP socket layer initialized
May  5 17:23:34 novren-linux-ente69kb kernel: [   11.911305] Bluetooth: Core ver 2.17
May  5 17:23:34 novren-linux-ente69kb kernel: [   11.911361] Bluetooth: HCI device and connection manager initialized
May  5 17:23:34 novren-linux-ente69kb kernel: [   11.911379] Bluetooth: HCI socket layer initialized
May  5 17:23:34 novren-linux-ente69kb kernel: [   11.911385] Bluetooth: L2CAP socket layer initialized
May  5 17:23:34 novren-linux-ente69kb kernel: [   11.911396] Bluetooth: SCO socket layer initialized
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.400969] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.400978] Bluetooth: BNEP filters: protocol multicast
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.400996] Bluetooth: BNEP socket layer initialized
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.533724] Bluetooth: RFCOMM TTY layer initialized
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.533749] Bluetooth: RFCOMM socket layer initialized
May  5 17:23:35 novren-linux-ente69kb kernel: [   18.533763] Bluetooth: RFCOMM ver 1.11
May  5 22:52:42 novren-linux-ente69kb kernel: [   12.237132] Bluetooth: Core ver 2.17
May  5 22:52:42 novren-linux-ente69kb kernel: [   12.237190] Bluetooth: HCI device and connection manager initialized
May  5 22:52:42 novren-linux-ente69kb kernel: [   12.237207] Bluetooth: HCI socket layer initialized
May  5 22:52:42 novren-linux-ente69kb kernel: [   12.237214] Bluetooth: L2CAP socket layer initialized
May  5 22:52:42 novren-linux-ente69kb kernel: [   12.237225] Bluetooth: SCO socket layer initialized
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.714500] Bluetooth: RFCOMM TTY layer initialized
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.714525] Bluetooth: RFCOMM socket layer initialized
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.714538] Bluetooth: RFCOMM ver 1.11
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.837526] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.837535] Bluetooth: BNEP filters: protocol multicast
May  5 22:52:44 novren-linux-ente69kb kernel: [   18.837555] Bluetooth: BNEP socket layer initialized
May  6 10:05:39 novren-linux-ente69kb kernel: [   11.800623] Bluetooth: Core ver 2.17
May  6 10:05:39 novren-linux-ente69kb kernel: [   11.800682] Bluetooth: HCI device and connection manager initialized
May  6 10:05:39 novren-linux-ente69kb kernel: [   11.800697] Bluetooth: HCI socket layer initialized
May  6 10:05:39 novren-linux-ente69kb kernel: [   11.800703] Bluetooth: L2CAP socket layer initialized
May  6 10:05:39 novren-linux-ente69kb kernel: [   11.800714] Bluetooth: SCO socket layer initialized
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.589994] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.590003] Bluetooth: BNEP filters: protocol multicast
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.590035] Bluetooth: BNEP socket layer initialized
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.611804] Bluetooth: RFCOMM TTY layer initialized
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.611829] Bluetooth: RFCOMM socket layer initialized
May  6 10:05:40 novren-linux-ente69kb kernel: [   18.611842] Bluetooth: RFCOMM ver 1.11
May  6 18:02:00 novren-linux-ente69kb kernel: [   11.835043] Bluetooth: Core ver 2.17
May  6 18:02:00 novren-linux-ente69kb kernel: [   11.835115] Bluetooth: HCI device and connection manager initialized
May  6 18:02:00 novren-linux-ente69kb kernel: [   11.835133] Bluetooth: HCI socket layer initialized
May  6 18:02:00 novren-linux-ente69kb kernel: [   11.835139] Bluetooth: L2CAP socket layer initialized
May  6 18:02:00 novren-linux-ente69kb kernel: [   11.835181] Bluetooth: SCO socket layer initialized
May  6 18:02:01 novren-linux-ente69kb kernel: [   18.533577] Bluetooth: RFCOMM TTY layer initialized
May  6 18:02:01 novren-linux-ente69kb kernel: [   18.533602] Bluetooth: RFCOMM socket layer initialized
May  6 18:02:01 novren-linux-ente69kb kernel: [   18.533615] Bluetooth: RFCOMM ver 1.11
May  6 18:02:02 novren-linux-ente69kb kernel: [   18.734411] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  6 18:02:02 novren-linux-ente69kb kernel: [   18.734419] Bluetooth: BNEP filters: protocol multicast
May  6 18:02:02 novren-linux-ente69kb kernel: [   18.734452] Bluetooth: BNEP socket layer initialized
May  7 10:47:58 novren-linux-ente69kb kernel: [   11.913404] Bluetooth: Core ver 2.17
May  7 10:47:58 novren-linux-ente69kb kernel: [   11.913472] Bluetooth: HCI device and connection manager initialized
May  7 10:47:58 novren-linux-ente69kb kernel: [   11.913490] Bluetooth: HCI socket layer initialized
May  7 10:47:58 novren-linux-ente69kb kernel: [   11.913496] Bluetooth: L2CAP socket layer initialized
May  7 10:47:58 novren-linux-ente69kb kernel: [   11.913507] Bluetooth: SCO socket layer initialized
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.334749] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.334758] Bluetooth: BNEP filters: protocol multicast
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.334775] Bluetooth: BNEP socket layer initialized
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.422555] Bluetooth: RFCOMM TTY layer initialized
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.422579] Bluetooth: RFCOMM socket layer initialized
May  7 10:47:59 novren-linux-ente69kb kernel: [   18.422594] Bluetooth: RFCOMM ver 1.11
May  7 12:34:35 novren-linux-ente69kb kernel: [   14.620182] Bluetooth: Core ver 2.17
May  7 12:34:35 novren-linux-ente69kb kernel: [   14.620293] Bluetooth: HCI device and connection manager initialized
May  7 12:34:35 novren-linux-ente69kb kernel: [   14.620312] Bluetooth: HCI socket layer initialized
May  7 12:34:35 novren-linux-ente69kb kernel: [   14.620318] Bluetooth: L2CAP socket layer initialized
May  7 12:34:35 novren-linux-ente69kb kernel: [   14.620330] Bluetooth: SCO socket layer initialized
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.174602] Bluetooth: RFCOMM TTY layer initialized
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.174625] Bluetooth: RFCOMM socket layer initialized
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.174638] Bluetooth: RFCOMM ver 1.11
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.519746] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.519755] Bluetooth: BNEP filters: protocol multicast
May  7 12:34:36 novren-linux-ente69kb kernel: [   25.519788] Bluetooth: BNEP socket layer initialized
As for history:

Code: Select all

history
    1  apt-get update; apt-get upgrade
    2  apt-get dist-upgrade
    3  apt-get install muon*
    4  apt-get install numix-icon-theme-circle 
    5  uname -a
    6  cd /home/novren/.kde/share/apps/kwallet/
    7  mv kdewallet.kwl kdewallet.old
    8  dpkg -i dropbox_1.6.0_amd64.deb epson-inkjet-printer-escpr_1.4.0-1lsb3.2_amd64.deb epson-inkjet-printer-201108w_1.0.0-1lsb3.2_amd64.deb 
    9  apt-get install lsb
   10  apt-get -f install
   11  dpkg -i epson-inkjet-printer-escpr_1.4.0-1lsb3.2_amd64.deb epson-inkjet-printer-201108w_1.0.0-1lsb3.2_amd64.deb 
   12  dpkg -i iscan*
   13  cd /home/novren/Downloads/Downloads
   14  dpkg -i iscan-data_1.28.0-2_all.deb 
   15  dpkg -i iscan_2.29.3-1~usb0.1.ltdl7_amd64.deb 
   16  dpkg -i iscan-network-nt_1.1.1-1_amd64.deb 
   17  dpkg -i iscan-data_1.28.0-2_all.deb 
   18  dpkg -i iscan_2.29.3-1~usb0.1.ltdl7_amd64.deb 
   19  hcitool dev
   20  sudo service bluetooth start
   21  sudo service bluetooth restart
   22  apt-get update
   23  apt-get install pcsx2
   24  apt-get install network-manager
   25  apt-get install network-manager-applet
   26  apt-get install nm-applet
   27  apt-get install network-manager-applet
   28  apt-get install plasma-nnm
   29  apt-get install plasma-nm
   30  apt-get install ndisgtk ndiswrapper-*
   31  cd ~/
   32  ~/novren
   33  cd /home/novren/
   34  ndiswrapper -i netathrx.inf 
   35  service bluetooth restart
   36  reboot
   37  modprobe ath3k
   38  kate /etc/modprobe.d/ath9k.conf 
   39  modprobe ath3k
   40  modprobe btusb
   41  hcitool scan
   42  cat /var/log/syslog | grep ath
   43   dmesg | grep ath
   44  cat /var/log/kern.log | grep Bluetooth
   45  history > bash-history.txt
   46  history

I've got to say, I fixed it in another installation attempt, so / and /boot got formatted and overwritten, I only kept /home every time.

Thanks!
novren

Re: Issue with Bluetooth on laptop

Post by novren »

Message was too long, so here is the rest.

as for that lsusb -v code, it looks like a webcam.

Code: Select all

lsusb -v -d 04f2:b3f6

Bus 002 Device 002: ID 04f2:b3f6 Chicony Electronics Co., Ltd 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass          239 Miscellaneous Device
  bDeviceSubClass         2 ?
  bDeviceProtocol         1 Interface Association
  bMaxPacketSize0        64
  idVendor           0x04f2 Chicony Electronics Co., Ltd
  idProduct          0xb3f6 
  bcdDevice           29.53
  iManufacturer           3 Chicony Electronics Co.,Ltd.
  iProduct                1 HD WebCam
  iSerial                 2 0001
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength         1315
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          4 USB Camera
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              500mA
    Interface Association:
      bLength                 8
      bDescriptorType        11
      bFirstInterface         0
      bInterfaceCount         2
      bFunctionClass         14 Video
      bFunctionSubClass       3 Video Interface Collection
      bFunctionProtocol       0 
      iFunction               5 HD WebCam
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      1 Video Control
      bInterfaceProtocol      0 
      iInterface              5 HD WebCam
      VideoControl Interface Descriptor:
        bLength                13
        bDescriptorType        36
        bDescriptorSubtype      1 (HEADER)
        bcdUVC               1.00
        wTotalLength           78
        dwClockFrequency       15.000000MHz
        bInCollection           1
        baInterfaceNr( 0)       1
      VideoControl Interface Descriptor:
        bLength                18
        bDescriptorType        36
        bDescriptorSubtype      2 (INPUT_TERMINAL)
        bTerminalID             1
        wTerminalType      0x0201 Camera Sensor
        bAssocTerminal          0
        iTerminal               0 
        wObjectiveFocalLengthMin      0
        wObjectiveFocalLengthMax      0
        wOcularFocalLength            0
        bControlSize                  3
        bmControls           0x0000000a
          Auto-Exposure Mode
          Exposure Time (Absolute)
      VideoControl Interface Descriptor:
        bLength                11
        bDescriptorType        36
        bDescriptorSubtype      5 (PROCESSING_UNIT)
      Warning: Descriptor too short
        bUnitID                 2
        bSourceID               1
        wMaxMultiplier          0
        bControlSize            2
        bmControls     0x0000053f
          Brightness
          Contrast
          Hue
          Saturation
          Sharpness
          Gamma
          Backlight Compensation
          Power Line Frequency
        iProcessing             0 
        bmVideoStandards     0x 9
          None
          SECAM - 625/50
      VideoControl Interface Descriptor:
        bLength                 9
        bDescriptorType        36
        bDescriptorSubtype      3 (OUTPUT_TERMINAL)
        bTerminalID             3
        wTerminalType      0x0101 USB Streaming
        bAssocTerminal          0
        bSourceID               4
        iTerminal               0 
      VideoControl Interface Descriptor:
        bLength                27
        bDescriptorType        36
        bDescriptorSubtype      6 (EXTENSION_UNIT)
        bUnitID                 4
        guidExtensionCode         {8ca72912-b447-9440-b0ce-db07386fb938}
        bNumControl             2
        bNrPins                 1
        baSourceID( 0)          2
        bControlSize            2
        bmControls( 0)       0x00
        bmControls( 1)       0x06
        iExtension              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0010  1x 16 bytes
        bInterval               6
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           0
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      VideoStreaming Interface Descriptor:
        bLength                            16
        bDescriptorType                    36
        bDescriptorSubtype                  1 (INPUT_HEADER)
        bNumFormats                         3
        wTotalLength                     1078
        bEndPointAddress                  129
        bmInfo                              0
        bTerminalLink                       3
        bStillCaptureMethod                 2
        bTriggerSupport                     1
        bTriggerUsage                       0
        bControlSize                        1
        bmaControls( 0)                    27
        bmaControls( 1)                    27
        bmaControls( 2)                    27
      VideoStreaming Interface Descriptor:
        bLength                            27
        bDescriptorType                    36
        bDescriptorSubtype                  4 (FORMAT_UNCOMPRESSED)
        bFormatIndex                        1
        bNumFrameDescriptors               10
        guidFormat                            {59555932-0000-1000-8000-00aa00389b71}
        bBitsPerPixel                      16
        bDefaultFrameIndex                  1
        bAspectRatioX                       0
        bAspectRatioY                       0
        bmInterlaceFlags                 0x00
          Interlaced stream or variable: No
          Fields per frame: 2 fields
          Field 1 first: No
          Field pattern: Field 1 only
          bCopyProtect                      0
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         1
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           480
        dwMinBitRate                147456000
        dwMaxBitRate                147456000
        dwMaxVideoFrameBufferSize      614400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         2
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            160
        wHeight                           120
        dwMinBitRate                  9216000
        dwMaxBitRate                  9216000
        dwMaxVideoFrameBufferSize       38400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         3
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            176
        wHeight                           144
        dwMinBitRate                 12165120
        dwMaxBitRate                 12165120
        dwMaxVideoFrameBufferSize       50688
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         4
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           480
        dwMinBitRate                147456000
        dwMaxBitRate                147456000
        dwMaxVideoFrameBufferSize      614400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         5
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            320
        wHeight                           240
        dwMinBitRate                 36864000
        dwMaxBitRate                 36864000
        dwMaxVideoFrameBufferSize      153600
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         6
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            352
        wHeight                           288
        dwMinBitRate                 48660480
        dwMaxBitRate                 48660480
        dwMaxVideoFrameBufferSize      202752
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         7
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            424
        wHeight                           240
        dwMinBitRate                 48844800
        dwMaxBitRate                 48844800
        dwMaxVideoFrameBufferSize      203520
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         8
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           360
        dwMinBitRate                110592000
        dwMaxBitRate                110592000
        dwMaxVideoFrameBufferSize      460800
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                         9
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            960
        wHeight                           540
        dwMinBitRate                124416000
        dwMaxBitRate                124416000
        dwMaxVideoFrameBufferSize     1036800
        dwDefaultFrameInterval         666666
        bFrameIntervalType                  1
        dwFrameInterval( 0)            666666
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  5 (FRAME_UNCOMPRESSED)
        bFrameIndex                        10
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                           1280
        wHeight                           720
        dwMinBitRate                147456000
        dwMaxBitRate                147456000
        dwMaxVideoFrameBufferSize     1843200
        dwDefaultFrameInterval        1000000
        bFrameIntervalType                  1
        dwFrameInterval( 0)           1000000
      VideoStreaming Interface Descriptor:
        bLength                            10
        bDescriptorType                    36
        bDescriptorSubtype                  3 (STILL_IMAGE_FRAME)
        bEndpointAddress                    0
        bNumImageSizePatterns               1
        wWidth( 0)                        640
        wHeight( 0)                       480
        bNumCompressionPatterns             1
      VideoStreaming Interface Descriptor:
        bLength                             6
        bDescriptorType                    36
        bDescriptorSubtype                 13 (COLORFORMAT)
        bColorPrimaries                     1 (BT.709,sRGB)
        bTransferCharacteristics            1 (BT.709)
        bMatrixCoefficients                 4 (SMPTE 170M (BT.601))
      VideoStreaming Interface Descriptor:
        bLength                            11
        bDescriptorType                    36
        bDescriptorSubtype                  6 (FORMAT_MJPEG)
        bFormatIndex                        2
        bNumFrameDescriptors               10
        bFlags                              1
          Fixed-size samples: Yes
        bDefaultFrameIndex                  1
        bAspectRatioX                       0
        bAspectRatioY                       0
        bmInterlaceFlags                 0x00
          Interlaced stream or variable: No
          Fields per frame: 1 fields
          Field 1 first: No
          Field pattern: Field 1 only
          bCopyProtect                      0
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         1
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           480
        dwMinBitRate                147456000
        dwMaxBitRate                147456000
        dwMaxVideoFrameBufferSize      614400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         2
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            160
        wHeight                           120
        dwMinBitRate                  9216000
        dwMaxBitRate                  9216000
        dwMaxVideoFrameBufferSize       38400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         3
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            176
        wHeight                           144
        dwMinBitRate                 12165120
        dwMaxBitRate                 12165120
        dwMaxVideoFrameBufferSize       50688
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         4
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           480
        dwMinBitRate                147456000
        dwMaxBitRate                147456000
        dwMaxVideoFrameBufferSize      614400
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         5
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            320
        wHeight                           240
        dwMinBitRate                 36864000
        dwMaxBitRate                 36864000
        dwMaxVideoFrameBufferSize      153600
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         6
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            352
        wHeight                           288
        dwMinBitRate                 48660480
        dwMaxBitRate                 48660480
        dwMaxVideoFrameBufferSize      202752
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         7
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            424
        wHeight                           240
        dwMinBitRate                 48844800
        dwMaxBitRate                 48844800
        dwMaxVideoFrameBufferSize      203520
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         8
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            640
        wHeight                           360
        dwMinBitRate                110592000
        dwMaxBitRate                110592000
        dwMaxVideoFrameBufferSize      460800
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                         9
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                            960
        wHeight                           540
        dwMinBitRate                248832000
        dwMaxBitRate                248832000
        dwMaxVideoFrameBufferSize     1036800
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                  7 (FRAME_MJPEG)
        bFrameIndex                        10
        bmCapabilities                   0x00
          Still image unsupported
        wWidth                           1280
        wHeight                           720
        dwMinBitRate                442368000
        dwMaxBitRate                442368000
        dwMaxVideoFrameBufferSize     1843200
        dwDefaultFrameInterval         333333
        bFrameIntervalType                  1
        dwFrameInterval( 0)            333333
      VideoStreaming Interface Descriptor:
        bLength                            10
        bDescriptorType                    36
        bDescriptorSubtype                  3 (STILL_IMAGE_FRAME)
        bEndpointAddress                    0
        bNumImageSizePatterns               1
        wWidth( 0)                        640
        wHeight( 0)                       480
        bNumCompressionPatterns             1
      VideoStreaming Interface Descriptor:
        bLength                             6
        bDescriptorType                    36
        bDescriptorSubtype                 13 (COLORFORMAT)
        bColorPrimaries                     1 (BT.709,sRGB)
        bTransferCharacteristics            1 (BT.709)
        bMatrixCoefficients                 4 (SMPTE 170M (BT.601))
      VideoStreaming Interface Descriptor:
        bLength                            56
        bDescriptorType                    36
        bDescriptorSubtype                 14         Invalid desc subtype: 03 0a 4d 34 32 30 00 00 10 00 80 00 00 aa 00 38 9b 71 32 56 55 59 00 00 10 00 80 00 00 aa 00 38 9b 71 33 56 55 59 00 00 10 00 80 00 00 aa 00 38 9b 71 00 01 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 01 00 80 02 e0 01 00 00 ca 08 00 00 ca 08 00 60 09 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 02 00 a0 00 78 00 00 a0 8c 00 00 a0 8c 00 00 96 00 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 03 00 b0 00 90 00 00 a0 b9 00 00 a0 b9 00 00 c6 00 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 04 00 80 02 e0 01 00 00 ca 08 00 00 ca 08 00 60 09 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 05 00 40 01 f0 00 00 80 32 02 00 80 32 02 00 58 02 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 06 00 60 01 20 01 00 80 e6 02 00 80 e6 02 00 18 03 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 07 00 a8 01 f0 00 00 50 e9 02 00 50 e9 02 00 1b 03 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            30
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 08 00 80 02 68 01 00 80 97 06 00 80 97 06 00 08 07 00 15 16 05 00 01 15 16 05 00
      VideoStreaming Interface Descriptor:
        bLength                            46
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 09 00 c0 03 1c 02 00 d0 78 02 00 10 5c 0c 00 d2 0f 00 80 1a 06 00 05 80 1a 06 00 20 a1 07 00 2a 2c 0a 00 40 42 0f 00 80 84 1e 00
      VideoStreaming Interface Descriptor:
        bLength                            34
        bDescriptorType                    36
        bDescriptorSubtype                 15         Invalid desc subtype: 0a 00 00 05 d0 02 00 00 65 04 00 00 ca 08 00 20 1c 00 40 42 0f 00 02 40 42 0f 00 80 84 1e 00
      VideoStreaming Interface Descriptor:
        bLength                            10
        bDescriptorType                    36
        bDescriptorSubtype                  3 (STILL_IMAGE_FRAME)
        bEndpointAddress                    0
        bNumImageSizePatterns               1
        wWidth( 0)                        640
        wHeight( 0)                       480
        bNumCompressionPatterns             1
      VideoStreaming Interface Descriptor:
        bLength                             6
        bDescriptorType                    36
        bDescriptorSubtype                 13 (COLORFORMAT)
        bColorPrimaries                     1 (BT.709,sRGB)
        bTransferCharacteristics            1 (BT.709)
        bMatrixCoefficients                 4 (SMPTE 170M (BT.601))
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       1
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x0080  1x 128 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       2
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       3
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       4
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x0b00  2x 768 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       5
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x0c00  2x 1024 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       6
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x1380  3x 896 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       7
      bNumEndpoints           1
      bInterfaceClass        14 Video
      bInterfaceSubClass      2 Video Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x1400  3x 1024 bytes
        bInterval               1
Device Qualifier (for other device speed):
  bLength                10
  bDescriptorType         6
  bcdUSB               2.00
  bDeviceClass          239 Miscellaneous Device
  bDeviceSubClass         2 ?
  bDeviceProtocol         1 Interface Association
  bMaxPacketSize0        64
  bNumConfigurations      1
Device Status:     0x0000
  (Bus Powered)
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

I bet this doesn't work

Code: Select all

lsusb -v -d 0cf3:3004
Have you tried enable/disable of bluetooth in windows, or in bios settings and trying again in LM? I see there are a couple bios updates available
novren

Re: Issue with Bluetooth on laptop

Post by novren »

JeremyB wrote:I bet this doesn't work

Code: Select all

lsusb -v -d 0cf3:3004
Have you tried enable/disable of bluetooth in windows, or in bios settings and trying again in LM? I see there are a couple bios updates available
The code didn't do anything.

I haven't because I haven't changed it's Windows status since last time it worked, so I don't think that's the problem. Same with the BIOS.

How do I update the BIOS?
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

To update the bios you would need to download the update from packard bell http://www.packardbell.co.uk/pb/en/GB/content/download
Enter your model number to search by and click the bios tab and download the update. Read the release notes or text files to see if there are reasons not to update
novren

Re: Issue with Bluetooth on laptop

Post by novren »

JeremyB wrote:To update the bios you would need to download the update from packard bell http://www.packardbell.co.uk/pb/en/GB/content/download
Enter your model number to search by and click the bios tab and download the update. Read the release notes or text files to see if there are reasons not to update
Thanks, I had actually been to that page in my research for drivers, but I had never bothered in checking other tabs.

PD: I see that it is only updatable from Windows. I'll do it later, see what happens. My OS's shouldn't be deleted or corrupted or anything, shouldn't they?
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Re: Issue with Bluetooth on laptop

Post by JeremyB »

novren wrote:
JeremyB wrote:To update the bios you would need to download the update from packard bell http://www.packardbell.co.uk/pb/en/GB/content/download
Enter your model number to search by and click the bios tab and download the update. Read the release notes or text files to see if there are reasons not to update
Thanks, I had actually been to that page in my research for drivers, but I had never bothered in checking other tabs.

PD: I see that it is only updatable from Windows. I'll do it later, see what happens. My OS's shouldn't be deleted or corrupted or anything, shouldn't they?
It shouldn't destroy anything. I have updated bios on a few pc's in the past without problems but they were all windows only pc's
I see the latest bios update has HWID in the filename, I wonder if that will fix the bluetooth not running like it should
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

I don't know what to think about this. I tried sending a file from my phone to the pc and got the "file not sent" error on my phone. I looked on the pc and the Blueman Device Manager wasn't running and when I got it running the pc accepted the file
JeremyB
Level 21
Level 21
Posts: 13881
Joined: Fri Feb 21, 2014 8:17 am

Re: Issue with Bluetooth on laptop

Post by JeremyB »

JeremyB wrote:I was getting close as I could send files from pc to phone but not the other way. I shutdown and restarted and nothing wanted to work. Did some more googling and found something that worked for me

I created ath9k.conf in /etc/modprobe.d/ using

Code: Select all

sudo gedit /etc/modprobe.d/ath9k.conf
The only thing I put in this file is

Code: Select all

option ath9k btcoex_enable=1
Did another shutdown and boot and I can send files bidirectional now
And now for some reason I had to delete the /etc/modprobe.d/ath9k.conf file to get bluetooth to work on LM16 Cinnamon and Ubuntu 14.04
Locked

Return to “Hardware Support”