我在外围设备上使用 STM BlueNRG-MS 芯片,连接后我想读取连接的中央设备(安卓手机)的名称。
我以为我可以直接在user_notify
注册为 hci 回调的例程中执行此操作
/* Initialize the Host-Controller Interface */
hci_init(user_notify, NULL);
因此,在EVT_LE_CONN_COMPLETE
活动中,我使用为中央设备提供的句柄,并使用aci_gatt_read_using_charac_uuid()
设备名称(uuid 0x2a00)读取我认为的特征。
case EVT_LE_META_EVENT:
{
evt_le_meta_event *evt = (void *)event_pckt->data;
switch(evt->subevent){
case EVT_LE_CONN_COMPLETE:
{
evt_le_connection_complete *cc = (void *)evt->data;
GAP_ConnectionComplete_CB(cc->peer_bdaddr, cc->handle);
uint16_t uuid = 0x2a00;
resp = aci_gatt_read_using_charac_uuid(cc->handle, 0, 1, UUID_TYPE_16, (uint8_t*)&uuid);
LOG("GATT read status: %d", resp);
enqueEvent(EVENT_BLE_CONNECTED);
}
break;
}
}
长话短说,它不起作用。我不确定的第一件事是,它的start_handle
andend_handle
参数是什么aci_gatt_read_using_charac_uuid()
,它返回ERR_INVALID_HCI_CMD_PARAMS
.
有人可以在这里阐明一下吗?
更新
让我感到困惑的是,BlueNRG-MS 编程指南aci_gatt_read_using_charac_uuid()
中没有提到该函数。
update2
我将函数调用更改为,aci_gatt_read_using_charac_uuid(cc->handle, 0x0001, 0xffff, UUID_TYPE_16, (uint8_t*)&uuid);
但我仍然得到ERR_INVALID_HCI_CMD_PARAMS
. 哪个参数甚至可能无效?uuid 存在,如果我将 BlueNRG GUI 与蓝牙加密狗一起使用,我可以读取设备名称。
update3
有没有人使用过这个功能或以某种方式设法从中央设备读取特征?我非常感谢任何帮助或提示。