GATT_Notification返回(0x16)blePending ,不能notify数据
时间:10-02
整理:3721RD
点击:
各位社友,TI工程师,请教一个问题GATT_Notification返回(0x16)blePending ,不能notify数据。
attHandleValueNoti_t Notify;
uint16 Cfg_value=0;
uint16 connHandle;
uint8 Status = SUCCESS;
GAPRole_GetParameter(GAPROLE_CONNHANDLE,&connHandle);
Notify.handle = simpleProfileAttrTbl[68].handle;
Notify.len = len;
osal_memcpy(Notify.pValue,value,len);
Status = GATT_Notification(connHandle,&Notify,FALSE);
return Status;
FYI
https://e2e.ti.com/support/wireless_connectivity/bluetooth_low_energy/f/538/t/425107
谢谢!现在又出现一个问题是notify上去的数据不对,代码可以发你邮箱帮我看一下吗?谢谢
你直接参考如下例子,就是notificaiton的实现。
http://processors.wiki.ti.com/index.php/SerialBLEbridge_V_1.4.1
谢谢