Add protocolCommons classes and enhance RadioService with support for CalibrationFactor, VersionType, ReadingUnits, and FlipMode operations. Add corresponding unit tests for validation. Update project files.
9 lines
212 B
C#
9 lines
212 B
C#
namespace TBF.Rig.TestMethods.iPerlCommunication.communication.C4.protocolCommons
|
|
{
|
|
public enum ReadingUnits : byte
|
|
{
|
|
CubicMeters = 0x00,
|
|
CubicFeet = 0x01,
|
|
UsGallons = 0x02
|
|
}
|
|
} |