WaterMeters folder created, WaterMeter component relocated within the project, iPerl component added WaterMeters.iPerl implements IRegisterReader interface, TODO: Implement WaterMeter.ReadPulses( ) function iPerlAdjustment test method added
21 lines
401 B
C#
21 lines
401 B
C#
///
|
|
/// Copyright (c) 2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.Modbus
|
|
{
|
|
public enum Function : byte
|
|
{
|
|
ReadCoilStatus = 0x01,
|
|
ReadSingleInput = 0x02,
|
|
ReadHoldingRegisters = 0x03,
|
|
ReadInputRegister = 0x04,
|
|
ForceSingleCoil = 0x05,
|
|
PresetSingleRegister = 0x06,
|
|
ForceMultipleCoils = 0x0F,
|
|
PresetMultipleRegisters = 0x10,
|
|
Identification = 0x11,
|
|
}
|
|
}
|