请问:
ZNP 模式,一个协调器组网后,已经有终端多个设备入网,协调器应该将入网设备信息保存在NV中。协调器断电重新上电,希望通过串口将NV中保存的入网设备表读出来,请问用什么命令实现?
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.
节点在入网的时候都会发送Device Announce,这个Device Announce是广播数据,所以每个设备的Device Announce,Coordinator都能收到。
您可以从 AssociatedDevList[NWK_MAX_DEVICES]数组中查看关联设备的信息,比如:
for (uint8 x=0;x<NWK_MAX_DEVICES;x++)
{
byte nr = AssociatedDevList[x].nodeRelation;