init
This commit is contained in:
26
DataPRO/SLICECommands/MulticastCommands/MulticastResetMcu.cs
Normal file
26
DataPRO/SLICECommands/MulticastCommands/MulticastResetMcu.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.Collections.Generic;
|
||||
using DTS.Common.ICommunication;
|
||||
|
||||
namespace DTS.DASLib.Command.SLICE.MulticastCommands
|
||||
{
|
||||
public class MulticastResetMcu : MulticastCommandBase
|
||||
{
|
||||
protected override Commands Command => Commands.ResetMcu;
|
||||
|
||||
public MulticastResetMcu(DTS.Common.Interface.DASFactory.ICommunication sock)
|
||||
: base(sock)
|
||||
{
|
||||
}
|
||||
|
||||
public MulticastResetMcu(DTS.Common.Interface.DASFactory.ICommunication sock, int timeoutMillisec)
|
||||
: base(sock, timeoutMillisec)
|
||||
{
|
||||
}
|
||||
|
||||
public override void CommandToString(ref List<List<string>> lines)
|
||||
{
|
||||
base.CommandToString(ref lines);
|
||||
lines.Add(new List<string> { $"MAC: {CommandClientMac}" });
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user