Multiprocotol Terminalprogram (BAT)
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.
MultiTerm/MultiTerm.Protocols/Serial/SerialProtocol.cs

34 lines
753 B

using Common.Logging;
using MultiTerm.Protocols.Types;
namespace MultiTerm.Protocols.Serial;
public class SerialProtocol : CommunicationProtocol
{
public override ProtocolType ProtocolType => ProtocolType.Serial;
public SerialProtocol(ILogger logger) : base(logger)
{
}
protected override bool InternalConnect()
{
throw new NotImplementedException();
}
protected override void InternalDisconnect()
{
throw new NotImplementedException();
}
protected override void InternalRead(CancellationToken ct)
{
throw new NotImplementedException();
}
protected override void InternalSendBytes(byte[] bytes)
{
throw new NotImplementedException();
}
}