系统运行状态参数反馈2.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 系统运行状态参数反馈2
  9. {
  10. public const string OperationCode = "6ed";
  11. public 系统运行状态参数反馈2()
  12. {
  13. }
  14. /// <summary>
  15. /// 换挡臂Y控制器心跳
  16. /// </summary>
  17. [Data(BitStart = 0 , BitLength = 4, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 换挡臂Y控制器心跳 { get; set; }
  19. /// <summary>
  20. /// 换挡臂Y控制电机标零状态
  21. /// </summary>
  22. [Data(BitStart = 7 , BitLength = 1 ,DataType = "binary", Description = "", Sequence = 2)]
  23. public string 换挡臂Y控制电机标零状态 { get; set; }
  24. /// <summary>
  25. /// 换挡臂X控制器心跳
  26. /// </summary>
  27. [Data(BitStart = 8 , BitLength =4 , DataType = "binary", Description = "", Sequence = 3)]
  28. public string 换挡臂X控制器心跳 { get; set; }
  29. /// <summary>
  30. /// 换挡臂X控制电机标零状态
  31. /// </summary>
  32. [Data(BitStart = 15, BitLength = 1, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 换挡臂X控制电机标零状态 { get; set; }
  34. /// <summary>
  35. /// 转向控制器心跳
  36. /// </summary>
  37. [Data(BitStart = 16, BitLength =4 , DataType = "binary", Description = "", Sequence = 5)]
  38. public string 转向控制器心跳 { get; set; }
  39. /// <summary>
  40. /// 转向控制电机标零状态
  41. /// </summary>
  42. [Data(BitStart = 23, BitLength = 1, DataType = "binary", Description = "", Sequence = 6)]
  43. public string 转向控制电机标零状态 { get; set; }
  44. /// <summary>
  45. /// 离合控制器心跳
  46. /// </summary>
  47. [Data(BitStart = 24, BitLength = 4, DataType = "binary", Description = "", Sequence = 7)]
  48. public string 离合控制器心跳 { get; set; }
  49. /// <summary>
  50. /// 离合控制电机标零状态
  51. /// </summary>
  52. [Data(BitStart = 31, BitLength = 1, DataType = "binary", Description = "", Sequence = 8)]
  53. public string 离合控制电机标零状态 { get; set; }
  54. /// <summary>
  55. /// 制动踏板控制器心跳
  56. /// </summary>
  57. [Data(BitStart = 32, BitLength = 4, DataType = "binary", Description = "", Sequence = 9)]
  58. public string 制动踏板控制器心跳 { get; set; }
  59. /// <summary>
  60. /// 制动控制电机标零状态
  61. /// </summary>
  62. [Data(BitStart = 39, BitLength = 1, DataType = "binary", Description = "", Sequence =10)]
  63. public string 制动控制电机标零状态 { get; set; }
  64. /// <summary>
  65. /// 油门踏板控制器心跳
  66. /// </summary>
  67. [Data(BitStart = 40, BitLength = 4, DataType = "binary", Description = "", Sequence =11)]
  68. public string 油门踏板控制器心跳 { get; set; }
  69. /// <summary>
  70. /// 油门踏板控制电机标零状态
  71. /// </summary>
  72. [Data(BitStart = 47, BitLength = 1, DataType = "binary", Description = "", Sequence =12)]
  73. public string 油门踏板控制电机标零状态 { get; set; }
  74. /// <summary>
  75. /// 系统RCU心跳
  76. /// </summary>
  77. [Data(BitStart = 48, BitLength = 4, DataType = "binary", Description = "", Sequence =13)]
  78. public string 系统RCU心跳 { get; set; }
  79. /// <summary>
  80. /// 实际系统控制状态
  81. /// </summary>
  82. [Data(BitStart = 56, BitLength = 3, DataType = "binary", Description = "", Sequence =14)]
  83. public string 实际系统控制状态 { get; set; }
  84. }
  85. }