up vote
1
down vote
I have solved the issue with the solution of this post: http://outhereinthefield.wordpress.com/2014/03/01/ubuntu-13-10-and-bluetooth-on-broadcom-bcm43142-wifibt-combo-adapter/
In summary, I have done this steps: List your id:
lsusb
My id is: 0a5c:21d7
Get the file .hex : In your windows partition, get the file BCMxxxx.hex in C:\windows\system32\drivers. If there are two or more files .hex, view which one is in use with windows device manager. Copy this file in your home directory
Open terminal and type these commands:
sudo apt-get install git git clone git://github.com/jessesung/hex2hcd.git cd hex2hcd make ./hex2hcd ../BCMxxxx.xxx.xxx.xx.hex fw-0a5c_21d7.hcd (Replace 0a5c_21d7 with your id) sudo cp fw* /lib/firmware
Reload modules with these commands:
sudo modprobe -r btusb sudo modprobe btusb
Restart your computer.
Open terminal and write:
dmesg | grep firmware
if all right you can view the message:
[ xxxxxxxxxx] Bluetooth: firmware loaded
This is all.
Good luck Diabolik2