11 lines
188 B
C#
11 lines
188 B
C#
using System;
|
|
|
|
namespace SharpSerial
|
|
{
|
|
public interface ISerialStream : IDisposable
|
|
{
|
|
void Write(byte[] data);
|
|
byte[] Read(int size, int eop, int toms);
|
|
}
|
|
}
|