执行机构限值设置.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 = "5fc";
  11. public 执行机构限值设置()
  12. {
  13. }
  14. /// <summary>
  15. /// 档位类型
  16. /// </summary>
  17. [Data(BitStart = 0, BitLength = 2, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 档位类型 { get; set; }
  19. /// <summary>
  20. /// 转向极限值
  21. /// </summary>
  22. [Data(BitStart = 13, BitLength = 19, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 转向极限值 { get; set; }
  24. /// <summary>
  25. /// 制动行程最大限值
  26. /// </summary>
  27. [Data(BitStart = 38, BitLength = 10, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 制动行程最大限值 { get; set; }
  29. /// <summary>
  30. /// 油门行程最大限值
  31. /// </summary>
  32. [Data(BitStart = 54, BitLength = 10, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 油门行程最大限值 { get; set; }
  34. }
  35. }