zmacInfo.h
上传用户:joranyuan
上传日期:2022-06-23
资源大小:3306k
文件大小:0k
源码类别:

网络

开发平台:

Others

  1. #ifndef ZMAC_INFO_H
  2. #define ZMAC_INFO_H
  3. typedef struct syncMsgType{
  4.   uint16_t mticks;
  5.   uint16_t sticks;
  6.   uint8_t trust;
  7.   uint16_t sender;
  8. } syncMsgType;
  9. typedef struct ecnMsgType{
  10.   uint8_t hopCount;
  11.   uint16_t nextHop;
  12.   uint16_t senderAddress;
  13. } ecnMsgType;
  14. typedef struct ecnForwardMsgType{
  15.   uint8_t hopCount;
  16.   uint16_t nextHop;
  17.   uint16_t senderAddress;
  18. } ecnForwardMsgType;
  19. #endif