// ******************************************************************************** // 文件名字: Command.S1F15 // 文件描述: Command.S1F15 // 开发人员: Hupe // 创建时间: 2021/4/19 15:35 // // 更新历史: // + 创建 Command.S1F17.cs 文件. by Hupe @2021/4/19 15:35 // ******************************************************************************** using ARI.EAP.HOST; using Glorysoft.SECS.EQP.Utilities; using System; namespace Glorysoft.SECS.EQP.Commands { public static partial class Command { public static void S1F15Command(object tag = null) { var trans = SimulatorInfo.Instance.Context?.GetTransaction(1, 15, "S1F15"); 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); } } }