请问:
设备的父节点丢失后,再次入网:
如:static void SensorTagApp_processZStackMsgs(zstackmsg_genericReq_t *pMsg)
{
zstackmsg_afDataConfirmInd_t *pInd = (zstackmsg_afDataConfirmInd_t *)pMsg;
if(pInd->req.status== zstack_ZStatusValues_ZApsNoAck)
{
//是否在此处增加Rejoin??
}
Zstackapi_DevRejoinReq(ICall_EntityID appEntity,zstack_devRejoinReq_t *pReq);
typedef struct _zstack_devrejoinreq_t
{
/** Set to True to perform an unsecure rejoin */
bool unsecure;
/** Channel where the PAN is located*/
uint8_t logicalChannel;
/** 64 bit extended PAN ID, use all 0xFF if don't care */
zstack_LongAddr_t extendedPANID;
} zstack_devRejoinReq_t;
参数如何配置?
谢谢?
VV:
rejoin协议栈自动会完成的。