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.

Z-Stack-mesh数据传输

Other Parts Discussed in Thread: CC2538

z-Stack-Mesh1.0.0协议栈组网,两个cc2538设备建立网络成功,但是传输数据传不了,是什么导致的呀

void MyApp_Senddata()
{
unsigned long deform=427;
send_Data[0]=0;
send_Data[1]=MYID;
send_Data[2]=deform;
send_Data[3]='V';
if(AF_DataRequest(&MyApp_Group1_DstAddr, 
&MyApp_epDesc
MYAPP_HEAD,
6, 
(byte*)&send_Data, 
&MyApp_TransID,
AF_DISCV_ROUTE, /* */
AF_DEFAULT_RADIUS)==afStatus_SUCCESS)
{
}
else
{
}
}