#ifndef _NETWORK_H_ #define _NETWORK_H_ #include #define NETNODE_NUM_MAX 128 #pragma pack(2) typedef struct _NetNode { uint16_t nodeAddress ; uint16_t nodeType ; uint16_t nodeStatus ; }NetNode ; #pragma pack() #endif