我有两个蓝牙适配器,一个旧的内部适配器和一个新的蓝牙4.0适配器.
我正在编写一个使用套接字(PF_BLUETOOTH,SOCK_SEQPACKET,BTPROTO_L2CAP)连接到Linux上的蓝牙LE设备的应用程序.当我用一个sockaddr_l2 {.l2_family = AF_BLUETOOTH,.l2_bdaddr = {…},.l2_cid = L2CAP_CID_ATT,.l2_bdaddr_type = BRADDR_LE_PUBLIC}调用connect()时,连接失败并且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
解决方法:
试试:hciconfig hci [0 | 1]版本