- 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.
11 lines
260 B
C#
11 lines
260 B
C#
using System.ComponentModel;
|
|
|
|
namespace TBF.Rig.RegisterReaders.PoseidonReader.communication
|
|
{
|
|
public enum ECommunicationInterface
|
|
{
|
|
[Description("..")] None,
|
|
[Description("Nfc")] Nfc,
|
|
[Description("cTouchRead")]Touched,
|
|
}
|
|
} |