Add AllyReader and AllyCalibration support with tests: Introduce new register readers, calibration methods, and comprehensive unit tests for integration and functionality validation. Update project files accordingly.
12 lines
249 B
C#
12 lines
249 B
C#
using System;
|
|
|
|
namespace TBF.Rig.RegisterReaders.AllyReader.Communication
|
|
{
|
|
public interface IAllyTransport : IDisposable
|
|
{
|
|
bool IsOpen { get; }
|
|
void Open();
|
|
byte[] SendAndWait(byte[] request, int timeoutMs);
|
|
}
|
|
}
|