Hi:
请问下,我是用CC2640R2开发,作为主机,如何在协议栈中获取从机的uuid是indicate 传来的数据。
比如若是从机notify的数据,可以通过
static uint8_t multi_role_processGATTMsg(gattMsgEvent_t *pMsg)
{
...
if(pMsg->method == ATT_HANDLE_VALUE_NOTI){
(pMsg->msg.handleValueNoti.pValue,pMsg->msg.handleValueNoti.len);//是notify 数据
}
谢谢!