现场更改提交

master
CZ 4 months ago
parent 8cac1769fc
commit fcbd455515

@ -5,7 +5,7 @@ public class CarStatus
/// <summary>
/// 车辆档位 最小值:-1最大值 14 0x0F表示无效-1 代表倒档 R0 代表空挡 N大于 0 代表前进档 D
/// </summary>
public byte? Gear { get; set; }
public short? Gear { get; set; }
/// <summary>
/// 刹车状态 "0:未拉手刹1已拉手刹 其它值无效"

@ -8,7 +8,7 @@ public class StatusMsg : BaseMsg
/// 车辆档位 最小值:-1最大值 14 0x0F表示无效-1 代表倒档 R0 代表空挡 N大于 0 代表前进档 D
/// </summary>
[Property(32, 4, offset: 1)]
public byte Gear { get; set; }
public short Gear { get; set; }
/// <summary>
/// 刹车状态 "0:未拉手刹1已拉手刹 其它值无效"

Loading…
Cancel
Save