26 lines
803 B
Plaintext
26 lines
803 B
Plaintext
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}" });
|
|
}
|
|
}
|
|
} |