protocol.h 233 B

123456789101112
  1. #ifndef __PROTOCOL_H
  2. #define __PROTOCOL_H
  3. #include "gateway_message.h"
  4. // 解析发过来的数据是modbus还是dlt645
  5. #define MODBUS_WRITE 4 //本机用于区分读写
  6. #define MODBUS 3
  7. #define DLT645_07 2
  8. #define DLT645_97 1
  9. #endif