0

我能够成功地通过我的 nucleo-64 板与我的 IDB05A1 进行通信。

我让它可被发现并将我的手机与它配对。但是,配对后,设备立即与我的手机断开连接。在它断开连接之前,我收到一个 HCI 事件,我无法破译:

0x04 0xff 0x0b 0x01 0x0c 0x01 0x08 0x04 0x00 0x02 0x00 0x00 0x02 0x00

请帮我破译这个。带有命令和事件的数据表

0x04        //HCI event
0xff        //Vendor specific
0x0b        //Contains 0b(12) bytes
0x01, 0x0c  //BLUEnrg event code
0x......

这是什么活动?

4

1 回答 1

0

此事件看起来与问题无关。它表示某个属性的修改值。

HCI 事件包: 0x04 //HCI event 0xff //Vendor specific 0x0b //Contains 0b(11) bytes 0x01 0x0c 0x01 0x08 0x04 0x00 0x02 0x00 0x00 0x02 0x00 //Event data

事件数据: 0x0c01 //ACI_GATT_ATTRIBUTE_MODIFIED_EVENT 0x0801 //The connection handle which modified the attribute 0x0004 //Handle of the attribute that was modified 0x0002 //Length of the attribute data 0x00 //Offset 0x0002 //The modified value

于 2018-02-13T04:03:20.457 回答