我有两个蓝牙适配器,一个旧的内部适配器和一个新的蓝牙4.0适配器。
我正在编写一个使用socket(PF_BLUETOOTH, SOCK_SEQPACKET, BTPROTO_L2CAP)
连接到Linux上的蓝牙LE设备的应用程序。当我使用connect()
调用sockaddr_l2 {.l2_family = AF_BLUETOOTH, .l2_bdaddr = {...}, .l2_cid = L2CAP_CID_ATT, .l2_bdaddr_type = BRADDR_LE_PUBLIC}
时,连接失败并显示errno = 0x38000000 = 939524096未知错误,因为Linux任意选择仅支持蓝牙2.1的旧适配器,而不是蓝牙4.0。解决方案是将套接字绑定到支持蓝牙4.0的适配器的bd_addr。
问题:如何判断哪个适配器是蓝牙4.0适配器? hciconfig没有说明哪一个是使用的;他们都说BR / EDR而不是LE。
$ hciconfig
hci1: Type: BR/EDR Bus: USB
BD Address: 00:25:00:F6:97:F0 ACL MTU: 1021:5 SCO MTU: 64:1
UP RUNNING PSCAN
RX bytes:1074 acl:0 sco:0 events:56 errors:0
TX bytes:1462 acl:0 sco:0 commands:56 errors:0
hci0: Type: BR/EDR Bus: USB
BD Address: 00:02:72:D6:A0:BF ACL MTU: 1021:8 SCO MTU: 64:1
UP RUNNING PSCAN
RX bytes:146505 acl:328 sco:0 events:4189 errors:0
TX bytes:6213 acl:215 sco:0 commands:83 errors:0
$ modinfo bluetooth | grep ^version:
version: 2.17
$ modinfo btusb | grep ^version:
version: 0.6
$ lsb_release --description
Description: Ubuntu 14.04.1 LTS
$ uname --kernel-release
3.13.0-40-generic
答案 0 :(得分:7)
要回答您的问题,btmgmt info
会列出HCI版本(与addr
位于同一行),您必须查看Host Controller Interface Assigned numbers以了解数字的含义,第6版低于蓝牙4.0。
# btmgmt info
hci0: Primary controller
addr 5C:F3:70:XX:XX:XX version 6 manufacturer 15 class 0x1c010c
supported settings: powered connectable fast-connectable discoverable bondable link-security ssp br/edr hs le advertising secure-conn debug-keys privacy configuration static-addr
current settings: powered bondable ssp br/edr le secure-conn
name BlueZ 5.47
short name
如果您需要知道适配器是否支持LE,则必须在le
中查找Supported settings:
,因为在蓝牙4.0 / 4.1中LE不是强制性的。
答案 1 :(得分:5)
尝试:hciconfig hci[0|1] version