我有一个来自中国的假冒 BT 4.0 加密狗,并尝试按照此线程中的程序进行操作: 蓝牙适配器问题
Distributor ID: Ubuntu
Description: Ubuntu 20.04.1 LTS
Release: 20.04
Codename: focal
Device: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)
bcdDevice: 88.91
Kernel: 5.10.3-051003-generic
usb-devices | awk '/0a12/' RS=
T: Bus=02 Lev=02 Prnt=02 Port=01 Cnt=01 Dev#= 3 Spd=12 MxCh= 0
D: Ver= 2.00 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1
P: Vendor=0a12 ProdID=0001 Rev=88.91
S: Product=BT DONGLE10
C: #Ifs= 2 Cfg#= 1 Atr=80 MxPwr=100mA
I: If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
I: If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
但即使修补之后,我仍然通过 hcidump 收到以下错误:
HCI Event: Command Complete (0x0e) plen 4
Set Event Filter (0x03|0x0005) ncmd 1
status 0x12
Error: Invalid HCI Command Parameters
核实:https://bugzilla.kernel.org/show_bug.cgi?id=60824#c155
“Pi Zero 上存在相同的设备和相同的问题。将#define lmp_bredr_capable(dev)
in改为hci_core.h
return false 即可解决问题。”
我不知道该怎么做#define lmp_bredr_capable(dev)。有人能帮忙吗?
我完全有空测试它。
答案1
我通过评论第 296 和 297 行解决了我的问题核心.c(加上补丁)。
static void bredr_setup(struct hci_request *req)
{
__le16 param;
__u8 flt_type;
/* Read Buffer Size (ACL mtu, max pkt, etc.) */
hci_req_add(req, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
/* Read Class of Device */
hci_req_add(req, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
/* Read Local Name */
hci_req_add(req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
/* Read Voice Setting */
hci_req_add(req, HCI_OP_READ_VOICE_SETTING, 0, NULL);
/* Read Number of Supported IAC */
hci_req_add(req, HCI_OP_READ_NUM_SUPPORTED_IAC, 0, NULL);
/* Read Current IAC LAP */
hci_req_add(req, HCI_OP_READ_CURRENT_IAC_LAP, 0, NULL);
/* Clear Event Filters */
//flt_type = HCI_FLT_CLEAR_ALL; HERE!!
//hci_req_add(req, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
/* Connection accept timeout ~20 secs */
param = cpu_to_le16(0x7d00);
hci_req_add(req, HCI_OP_WRITE_CA_TIMEOUT, 2, ¶m);
也许“#define lmp_bredr_capable(dev) 0”也能用。但我不确定。我仍然运行 bredr_setup(),但绕过了清除事件过滤器步骤...
注:它已经运行了两天,没有出现任何问题。唯一的问题是,我无法将其转换为 HSP\HSP 配置文件,但我认为这是另一个故事(即使在 ofono gambiarra 之后)。Linux 中的蓝牙非常麻烦。
答案2
我发现只需升级到内核 5.13.4 即可解决假蓝牙 CSR 0100 问题。
sudo add-apt-repository ppa:cappelikan/ppa
然后通过命令检查更新并安装工具:
sudo apt update
sudo apt install mainline
在 Linux 程序内核主线更新程序中搜索并运行升级,重新启动,假 CSR 蓝牙开始工作。