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.

退网问题

只有协调器和终端构成网络,终端处于低功耗。在协调器和终端都定义了:

#define ZDO_MGMT_LEAVE_REQUEST    

#define ZDO_MGMT_LEAVE_RESPONSE

在协调器中使用删除节点命令

uint8 lex;
  zAddrType_t leaveID;
  leaveID.addrMode=(afAddrMode_t)Addr16Bit;
  leaveID.addr.shortAddr=0;
  for(lex=0;lex<8;lex++)
  {
     MyLIEEE[lex]=Addr2[lex+5];
  }
 
  ZDP_MgmtLeaveReq(&leaveID,MyLIEEE,0,1,1);
不能删除节点。MyLIEEE就是节点的IEEE地址,在入网的时候记录的,断点调试和通过SmartRF Flash Programmer读出的一样。但是不能删除节点,求解答。