转向控制状态反馈.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = "6e9";
  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 = 12, BitLength = 12,DataType = "binary", Description = "", Sequence = 2)]
  23. public string 方向盘转速 { get; set; }
  24. /// <summary>
  25. /// 实际转向电机转速
  26. /// </summary>
  27. [Data(BitStart = 27, BitLength =13, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 实际转向电机转速 { get; set; }
  29. /// <summary>
  30. /// 计算转向电机转矩
  31. /// </summary>
  32. [Data(BitStart = 40, BitLength = 5, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 计算转向电机转矩 { get; set; }
  34. /// <summary>
  35. /// 方向盘转矩
  36. /// </summary>
  37. [Data(BitStart = 50, BitLength =14, DataType = "binary", Description = "", Sequence = 5)]
  38. public string 方向盘转矩 { get; set; }
  39. }
  40. }