2014-07-28 07:54:35 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-07-31 15:04:09 +00:00
|
|
|
|
using TBF.Boxes;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IRegisterReader : IComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
float PulsesPerLtr { get; }
|
|
|
|
|
|
IOperation ReadRegisterOp(ref IntBox pulses);
|
|
|
|
|
|
IOperation ReadRegisterOp(ref IntBox pulses, ref IntBox refPulses);
|
|
|
|
|
|
IOperation ReadReferenceForRegisterOp(ref IntBox pulses, ref IntBox refPulses);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|