芯片:CC2530
协议栈:zigbee1.2.2a
路由器节点的关联表中的shortAddr为路由器类型节点时,多久会清除?
typedef struct
{
uint16 shortAddr; // Short address of associated device
uint16 addrIdx; // Index from the address manager
byte nodeRelation;
byte devStatus; // bitmap of various status values
byte assocCnt;
byte age;
linkInfo_t linkInfo;
aging_end_device_t endDev;
uint32 timeoutCounter;
bool keepaliveRcv;
} associated_devices_t;
1,如果不可以清除,那么关联表会加满。应该会有问题。
2,如果可以清除,那么呆在关联表中的那个路由节点需要断电多久会清除?这个时间在哪里修改?
谢谢!
YiKai Chen:
zigbee1.2.2a关联表內的路由节点要收到leave request才会清除
user3514461:
回复 YiKai Chen:
应用层如何清除关联表中这个久不联系的路由器地址?谢谢
YiKai Chen:
回复 user3514461:
可以調用AssocRemove去移除
Kevin Qiu1:
回复 user3514461:
可以用NLME_LeaveReq()或者AssocRemove()对表中的信息进行清除操作