ZStatus_t在哪里定义的,只找到是uint8类型,枚举定义在哪
Yue TANG:
不是枚举。这个类型既可以作为nwk层的API调用的返回值,应用层也有使用, Security status 的状态也使用它,主要定义在zcomdef.h.
不用纠结,真正反映zigbee状态的变量不是这个定义,而是下面的
网络层状态:
typedef enum{ NWK_INIT, NWK_JOINING_ORPHAN, NWK_DISC, NWK_JOINING, NWK_ENDDEVICE, PAN_CHNL_SELECTION, PAN_CHNL_VERIFY, PAN_STARTING, NWK_ROUTER, NWK_REJOINING} nwk_states_t;
和应用层的
typedef enum{ DEV_HOLD, // Initialized – not started automatically DEV_INIT, // Initialized – not connected to anything DEV_NWK_DISC, // Discovering PAN's to join DEV_NWK_JOINING, // Joining a PAN DEV_NWK_SEC_REJOIN_CURR_CHANNEL, // ReJoining a PAN in secure mode scanning in current channel, only for end devices DEV_END_DEVICE_UNAUTH, // Joined but not yet authenticated by trust center DEV_END_DEVICE, // Started as device after authentication DEV_ROUTER, // Device joined, authenticated and is a router DEV_COORD_STARTING, // Started as Zigbee Coordinator DEV_ZB_COORD, // Started as Zigbee Coordinator DEV_NWK_ORPHAN, // Device has lost information about its parent.. DEV_NWK_KA, // Device is sending KeepAlive message to its parent DEV_NWK_BACKOFF, // Device is waiting before trying to rejoin DEV_NWK_SEC_REJOIN_ALL_CHANNEL, // ReJoining a PAN in secure mode scanning in all channels, only for end devices DEV_NWK_TC_REJOIN_CURR_CHANNEL, // ReJoining a PAN in Trust center mode scanning in current channel, only for end devices DEV_NWK_TC_REJOIN_ALL_CHANNEL // ReJoining a PAN in Trust center mode scanning in all channels, only for end devices} devStates_t;