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.
45 lines
1.0 KiB
45 lines
1.0 KiB
using HybirdFrameworkDriver.Common;
|
|
using Service.Charger.Common;
|
|
|
|
namespace Service.Charger.Msg;
|
|
|
|
public abstract class APCI : IToBytes
|
|
{
|
|
/// <summary>
|
|
/// 报文长度
|
|
/// </summary>
|
|
public ushort PackLen { get; set; }
|
|
|
|
/// <summary>
|
|
/// 控制域
|
|
/// </summary>
|
|
public uint CtlArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标地址
|
|
/// </summary>
|
|
public byte[] DestAddr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 源地址
|
|
/// </summary>
|
|
public uint SrcAddr { get; set; }
|
|
|
|
|
|
public byte[] ToBytes()
|
|
{
|
|
var bodyBytes = GetBytes();
|
|
var list = new List<byte>();
|
|
list.AddRange(ChargerConst.StartChar);
|
|
list.AddRange(BitConverter.GetBytes(bodyBytes.Length + 12));
|
|
list.AddRange(BitConverter.GetBytes(CtlArea));
|
|
list.AddRange(DestAddr);
|
|
list.AddRange(BitConverter.GetBytes(SrcAddr));
|
|
|
|
list.AddRange(bodyBytes);
|
|
|
|
return list.ToArray();
|
|
}
|
|
|
|
public abstract byte[] GetBytes();
|
|
} |