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(); } }