dc/Commands/Command.S1F13.cs

28 lines
1.0 KiB
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
// ********************************************************************************
// 文件名字: Command.S1F13
// 文件描述: Command.S1F13
// 开发人员: Michael
// 创建时间: 2019/11/8 0:08
//
// 更新历史:
// + 创建 Command.S1F13.cs 文件. by Michael @2019/11/8 0:08
// ********************************************************************************
using System;
using ARI.EAP.HOST;
using Glorysoft.SECS.EQP.Utilities;
namespace Glorysoft.SECS.EQP.Commands
{
public static partial class Command
{
public static void S1F13Command(object tag = null)
{
var trans = SimulatorInfo.Instance.Context?.GetTransaction(1, 13, "S1F13");
trans.Tag = tag;
SimulatorInfo.Instance.Context?.SendMessage(trans);
Global.MF.addlog(LoggerService.HtoE, $"S{trans.Primary.Stream}F{trans.Primary.Function}", LoggerService.Send, trans.Description,"=" + trans.Primary.SystemBytes.ToString());
LoggerService.SECSLogger.Info(trans.Primary);
}
}
}