Files
HC_APTBS/Infrastructure/Kwp/IInterface.cs
2026-04-11 12:45:18 +02:00

18 lines
272 B
C#

using System;
namespace HC_APTBS.Infrastructure.Kwp
{
public interface IInterface : IDisposable
{
byte ReadByte();
void WriteByteRaw(byte b);
void SetBreakOn();
void SetBreakOff();
void ClearReceiveBuffer();
}
}