18 lines
272 B
C#
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();
|
|
}
|
|
}
|