This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2640R2 central 获取peripheral 的indicate数据



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 数据

}

谢谢!