You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace BatCharging.Service
{
public class S2MSTATUS
{
/// <summary>
/// SBMU状态报文的CRC
/// </summary>
public byte SBMUCRC { get; set; }
/// <summary>
/// SBMU生命信号,0~15循环
/// </summary>
public byte SBMUALIV { get; set; }
/// <summary>
/// SBMU高压上电状态(软件驱动状态)
/// </summary>
public byte HVPwrOnStatus { get; set; }
/// <summary>
/// SBMU高压下电请求
/// </summary>
public byte HVPwrOffRuquest { get; set; }
/// <summary>
/// SBMU低压下电准备状态
/// </summary>
public byte LVPwrOffReady { get; set; }
/// <summary>
/// SBMU地址
/// </summary>
public byte SbmuAddress { get; set; }
/// <summary>
/// DC充电控制电流请求模式
/// </summary>
public byte ReqDCChrgMode { get; set; }
/// <summary>
/// 高精度显示SOC
/// </summary>
public float PackDispSOC { get; set; }
/// <summary>
/// 真实SOH
/// </summary>
public byte PackRealSOH { get; set; }
/// <summary>
/// 故障等级
/// </summary>
public byte SysFltLvl { get; set; }
/// <summary>
/// 主回路允许上高压
/// </summary>
public byte MainAllowPwrOn { get; set; }
/// <summary>
/// 辅件回路允许上高压
/// </summary>
public byte AuxAllowPwrOn { get; set; }
/// <summary>
/// 直流充电请求停止标志
/// </summary>
public byte ReqDCChrgStop { get; set; }
/// <summary>
/// BMS内部唯一识别故障码故障列表
/// </summary>
public byte StsSysFltID { get; set; }
}
}