使用hciattach蓝牙over uart?

时间:2017-01-30 20:27:24

标签: linux bluetooth kernel-module bluez hci

我在QN9021(BLE蓝牙核心规范v4.0)中使用controller mode SoC。它支持一些标准HCI命令以及一些特定于供应商的命令。我正在尝试将其附加到我的ubuntu笔记本电脑中。

我使用的命令是hciattach

hciattach -s 9600 /dev/ttyUSBx any 9600 noflow nosleep 

执行hcidump时显示sudo hciconfig hci1 up

HCI sniffer - Bluetooth packet analyzer ver 5.37
device: hci1 snap_len: 1500 filter: 0xffffffffffffffff
> HCI Event: Command Complete (0x0e) plen 12
    Read Local Supported Features (0x04|0x0003) ncmd 11
    status 0x00
    Features: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
> HCI Event: Command Complete (0x0e) plen 12
    Read Local Version Information (0x04|0x0001) ncmd 11
    status 0x00
    HCI Version: 4.0 (0x6) HCI Revision: 0x400
    LMP Version: 4.0 (0x6) LMP Subversion: 0x400
    Manufacturer: Quintic Corp. (142)
> HCI Event: Command Complete (0x0e) plen 10
    Read BD ADDR (0x04|0x0009) ncmd 11
    status 0x00 bdaddr 08:7C:BE:3E:34:BB
> HCI Event: Command Complete (0x0e) plen 11
    Read Buffer Size (0x04|0x0005) ncmd 11
    status 0x00
    ACL MTU 0:0 SCO MTU 0:0
> HCI Event: Command Complete (0x0e) plen 4
    Read Class of Device (0x03|0x0023) ncmd 11
    status 0x01 class 0x000000
    Error: Unknown HCI Command

hciconfig命令显示:

hci1:   Type: BR/EDR  Bus: UART
    BD Address: 08:7C:BE:3E:34:BB  ACL MTU: 0:0  SCO MTU: 0:0
    DOWN 
    RX bytes:192 acl:0 sco:0 events:15 errors:0
    TX bytes:60 acl:0 sco:0 commands:15 errors:0

hci0:   Type: BR/EDR  Bus: USB
    BD Address: C4:8E:8F:66:3B:0E  ACL MTU: 820:8  SCO MTU: 255:16
    UP RUNNING PSCAN 
    RX bytes:2457 acl:0 sco:0 events:196 errors:0
    TX bytes:24646 acl:0 sco:0 commands:196 errors:0

我想知道如何防止内核或某些蓝牙内核模块发送不支持的HCI命令。我是否需要修补Linux内核源代码或为我的SoC编写模块。

注意: - 此项目无法更改SoC或为其编写固件以支持所有必需的命令。

编辑:

我知道我的SoC支持的HCI命令列表。我正在考虑创建一个module来告诉内核和守护进程运行只向SoC发送支持的命令。我看一下linux内核源代码(特别是在这个hci_core.c)。我认为修改它可以在完成link之后解决问题。在此链接中,某些开发人员提供了一个补丁来支持bluetooth dongle。该补丁阻止hci_core.c文件将特定的HCI命令发送到特定制造商的加密狗。

我想要的只是建议解决这个问题。我是否需要修改linux内核或为我的SoC编写模块?

注意: - 应用程序将在openwrt linux上运行。

2 个答案:

答案 0 :(得分:2)

好的,今天我们找到了解决方案:

# hciattach -r /dev/ttyS0 bcsp 115200

也许对某人有帮助

有用的提示:请link对您有所帮助。

  

我将提供两个链接以获取更多详细信息   和蓝牙click here   和内核配置click here

答案 1 :(得分:0)

几年前,我已经解决了这个问题。我使用的是Linux版本4.4.14和Bluez堆栈5.38QN9021似乎有一些错误。问题不在于Read Class of Device,而是问题QN9021对命令Read Local Supported Features的响应。由于它是BLE控制器芯片,因此不应发送Features: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00作为对上述命令的响应。

问题是内核将其检测为Classic Bluetooth控制器芯片,然后将不支持的HCI命令发送到该芯片。芯片应将Features中第4个字节的第5位和第6位(LMP_NO_BREDRLMP_LE位)设置为命令Read Local Supported Features,然后内核将其检测为BLE控制器模式芯片,不会将任何不受支持的命令发送到ble控制器模式芯片。

因为我无法更改芯片的固件,所以我必须修补内核。

这是我的补丁:

*** hci_event.c 2017-02-10 00:05:13.149974000 +0530
--- bluetooth/hci_event.c   2016-06-24 22:48:38.000000000 +0530
***************
*** 588,597 ****
    if (rp->status)
        return;

- 
    memcpy(hdev->features, rp->features, 8);
-   hdev->features[0][4] |= LMP_NO_BREDR;
-   hdev->features[0][4] |= LMP_LE;

    /* Adjust default settings according to features
     * supported by device. */
--- 588,594 ----

我也厌倦了以下命令,但没有帮助:

hciattach -r /dev/ttyS0 bcsp 115200