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.

zigbee组网问题

zigbee组建自己定义的星型网络,所需协调器挂载两个节点,但为什么第三个节点加入后仍然可以与协调器通信,网络配置如下:

#define STACK_PROFILE_ID      NETWORK_SPECIFIC

#elif ( STACK_PROFILE_ID == NETWORK_SPECIFIC )
// define your own stack profile settings
#define MAX_NODE_DEPTH 1
#define NWK_MODE NWK_MODE_MESH
#define SECURITY_MODE SECURITY_RESIDENTIAL
#if ( SECURE != 0 )
#define USE_NWK_SECURITY 1 // true or false
#define SECURITY_LEVEL 5
#else
#define USE_NWK_SECURITY 0 // true or false
#define SECURITY_LEVEL 0
#endif
#endif

uint8 CskipRtrs[MAX_NODE_DEPTH+1] = {0,0};
uint8 CskipChldrn[MAX_NODE_DEPTH+1] = {2,0}