UnitProtocol.h 509 B

12345678910111213141516171819
  1. /*
  2. * UnitProtocol.h
  3. *
  4. * Created on: 2019年11月28日
  5. * Author: yt
  6. */
  7. #ifndef UNITPROTOCOL_H_
  8. #define UNITPROTOCOL_H_
  9. extern int chk_protocol(unsigned char *inData, int inLen, unsigned char *outData);
  10. int mkHeartBeatCmd(unsigned char *cmd);
  11. extern int mk_ReportCmd(int idx, unsigned char *cmd);
  12. extern int mk_RecordCmd(int d,int n,int m, unsigned char *cmd);
  13. extern int mkDeviceRegistCmd(unsigned char *cmd);
  14. extern int mk_RealdataCmd(int idx, unsigned char *cmd);
  15. #endif /* UNITPROTOCOL_H_ */