我能够从我的nucleo-64板上成功地与我的IDB05A1通信。
我将其设置为可发现的,并将我的手机与其配对。然而,在配对之后,设备立即与我的手机断开连接。在它断开连接之前,我收到一个无法破译的HCI事件:
0x04 0xff 0x0b 0x01 0x0c 0x01 0x08 0x04 0x00 0x02 0x00 0x00 0x02 0x00
请帮我破译这个。datasheet with commands and events
0x04 //HCI event
0xff //Vendor specific
0x0b //Contains 0b(12) bytes
0x01, 0x0c //BLUEnrg event code
0x......这是什么活动?
发布于 2018-02-13 12:03:20
此事件看起来与问题无关。表示某个属性的修改后的值。
人机交互事件包: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
https://stackoverflow.com/questions/42204321
复制相似问题