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.2 KiB
45 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BatCharging.Model;
|
|
|
|
namespace BatCharging.Service
|
|
{
|
|
/// <summary>
|
|
/// 解包充电机应答远程启动充电消息
|
|
/// </summary>
|
|
internal class MsgStartChgResDecoder
|
|
{
|
|
/// <summary>
|
|
/// 解包充电机应答远程启动充电的字节列表
|
|
/// </summary>
|
|
/// <param name="msgRecv">接收到字节数组</param>
|
|
/// <returns>充电机应答远程启动充电消息</returns>
|
|
public RemoteStartChargingRes GetStartChargingResMsg(byte[] msgRecv)
|
|
{
|
|
RemoteStartChargingRes msgResult = null;
|
|
if (msgRecv != null)
|
|
{
|
|
int num = msgRecv.Length;
|
|
if (num >= 26)
|
|
{
|
|
msgResult = new RemoteStartChargingRes
|
|
{
|
|
Result = msgRecv[24],
|
|
FailReason = msgRecv[25]
|
|
};
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
return msgResult;
|
|
}
|
|
|
|
|
|
}
|
|
}
|