child aging功能使得可以通过查看AssociatedDevList来确定哪些设备在线,查看notMyChildList来确定哪些设备已经离线,但问题来了,
MAX_NOT_MYCHILD_DEVICES 小于 NWK_MAX_DEVICES,这样如果我超过
MAX_NOT_MYCHILD_DEVICES个设备离线的话,离线的设备记录在哪里?还是在
AssociatedDevList数组中吗?
// Number of End Devices that will be stored in the SrcMatch and NotMyChildList lists
// when aged out by the Child Table Management process
// It is recommemded to keep this values to a fraction of gNWK_MAX_SLEEPING_END_DEVICES value
// which is the value of the table in the radio
#define MAX_NOT_MYCHILD_DEVICES 5
MAX_NOT_MYCHILD_DEVICES是不是不能改成跟NWK_MAX_DEVICES长度一样?