方向盘位置时间序列控制.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SIASUN.Autopilot.Device.Message
  7. {
  8. public class 方向盘位置时间序列控制
  9. {
  10. public const string OperationCode = "7f6";
  11. public 方向盘位置时间序列控制()
  12. {
  13. }
  14. /// <summary>
  15. /// 方向盘转角
  16. /// </summary>
  17. [Data(BitStart = 5, BitLength = 19, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 方向盘转角 { get; set; }
  19. /// <summary>
  20. /// 相对时间
  21. /// </summary>
  22. [Data(BitStart = 24, BitLength = 16, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 相对时间 { get; set; }
  24. /// <summary>
  25. /// 实际点序号
  26. /// </summary>
  27. [Data(BitStart = 40, BitLength = 8, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 实际点序号 { get; set; }
  29. /// <summary>
  30. /// 总个数
  31. /// </summary>
  32. [Data(BitStart = 48, BitLength = 8, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 总个数 { get; set; }
  34. /// <summary>
  35. /// 序列ID
  36. /// </summary>
  37. [Data(BitStart = 56, BitLength = 8, DataType = "binary", Description = "", Sequence = 5)]
  38. public string 序列ID { get; set; }
  39. }
  40. }