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.

高手请进,如何获取节点地址?



使用SimpliciTI1.2.0协议的星状网络官方例程进行开发,可是不会获取新加入ED节点的物理地址,请高手指点.

好像SimpliciTI1.1.0版本的使用 "UartSendWord((void *)&sJoinedED[sLID[sNumCurrentPeers-1]],4);" 可以成功获取,

其中______________________

addr_t sJoinedED[NUM_CONNECTIONS];

void UartSendWord(uchar *msg,unsigned int lenth)
{
do{
U0DBUF = *msg++;
while(!UTX0IF);
UTX0IF = 0;
}while(--lenth);
}