tbf/TBF/Rig/RegisterReaders/AllyReader/Communication/IAllyTransport.cs
Michal Buzik c71fe75446 Ally iPerl initial - reader,test method, unit test
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.
2026-08-18 10:01:02 +02:00

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