- Introduced simulation timers in `FlyingStartStopTestOp`. - Added `Simulate` methods in `WaterMetrologyData`, `WaterMetrologyDataC7`, and `WaterMetrologyDataC2`. - Enhanced `SmartCommunicationForm` with textbox resizing logic and initialization code. - Implemented flow rate and volume calculation from optohead telemetry in `SmartReader`. - Added unit tests for Poseidon correction parsing.
16 lines
397 B
C#
16 lines
397 B
C#
|
|
|
|
using TBF.Rig.Configs.NameOnly;
|
|
using TBF.Rig.Generic;
|
|
using TBF.Rig.RegisterReaders.CommonRR.IPerl;
|
|
|
|
namespace TBF.Rig.Uni.SharedDialogs.SmartMetersCommunication
|
|
{
|
|
public interface ISmartTestMethod
|
|
{
|
|
public void MeterCommMilestone(int iItem, bool bValue);
|
|
public bool IsMeterCommMilestone(int iItem);
|
|
|
|
public ITestMethodCfg TestMethodCfg { get; }
|
|
}
|
|
} |