You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
386 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT809.Protocol.JT809Enums
  5. {
  6. public enum JT809ErrorCode
  7. {
  8. CRC16CheckInvalid = 1001,
  9. HeaderLengthNotEqualBodyLength=1002,
  10. GetFormatterError=1003,
  11. SerializeError=1004,
  12. DeserializeError=1005,
  13. HeaderParseError=1006,
  14. BodiesParseError=1007
  15. }
  16. }