PlcEnums.cs 481 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.ComponentModel;
  3. using System.Threading.Tasks;
  4. using HslCommunication.Core;
  5. using Newtonsoft.Json;
  6. namespace TeamAAS.Communication.Interfaces
  7. {
  8. public enum DebugDataType
  9. {
  10. Bool,
  11. Byte,
  12. Short,
  13. Ushort,
  14. Int,
  15. Uint,
  16. Long,
  17. Ulong,
  18. Float,
  19. Double,
  20. String
  21. }
  22. public enum ByteOrderType
  23. {
  24. ABCD,
  25. BADC,
  26. CDBA,
  27. DCBA,
  28. }
  29. }