Part Number: CC2530
Tool/software: WEBENCH® Design Tools
I want to know that how can I find that my CC2530 zigbee coordinator is currently sending the msg over ther air ??
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.
Part Number: CC2530
Tool/software: WEBENCH® Design Tools
I want to know that how can I find that my CC2530 zigbee coordinator is currently sending the msg over ther air ??
That means I should wait for APS ack??
Currently I have disabled APS_ACK_REQ by removing it from AF_DATA_REQ
Because when I send multiple bytes of data some were miss beacause I was think that coordinator is wait for AF_DATA confirmation
Where can I do that??
It should be like the following code to get sequence number:
case AF_DATA_CONFIRM_CMD:
afDataConfirm_t *RcvafDataConfirm;
RcvafDataConfirm= (afDataConfirm_t *)MSGpkt;
sequence number=RcvafDataConfirm->transID;
this sequence number should be match with the number transmitted in following function GenericApp_TransID ?? If it dosen't match than retransmitt the message am I rigth??
if ( AF_DataRequest( &GenericApp_DstAddr, &GenericApp_epDesc,GENERICAPP_CLUSTERID,data_len,data,
&GenericApp_TransID,(AF_DISCV_ROUTE | AF_ACK_REQUEST),AF_DEFAULT_RADIUS)==afStatus_SUCCESS)