forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 4
Using Asus BT500 bluettoth dongle on Linux system
Lukasz Gniadzik edited this page Mar 26, 2021
·
3 revisions
Depending on Linux kernel version used, the ASUS BT500 may now work as expected out-of-the-box - especially the BLE functionality.
This is caused by a quite new Raltek 8761BU chipset inside the BT500, which is not supported by btrtl
Linux kernel driver (it supports 8761B but not the 8761BU).
To solve that problem, a new driver from the ASUS webpage has to be installed on linux.
$ wget https://dlcdnets.asus.com/pub/ASUS/wireless/USB-BT500/20200909_LINUX_BT_DRIVER_KERNEL_5.7_COEX_v0202.zip
$ cd 20200806_LINUX_BT_DRIVER_RTL8761B_COEX_v0202/20200806_LINUX_BT_DRIVER_RTL8761B_COEX_v0202/usb
$ sudo make install
$ sudo cp rtkbt-firmware/lib/firmware/rtl8761bu_fw /lib/firmware/
$ sudo cp rtkbt-firmware/lib/firmware/rtl8761bu_config /lib/firmware/
$ hciconfig -a
Now RTK chip can be recognized by the system and bluetooth function can be used.
$ sudo make uninstall