31 lines
880 B
C#
31 lines
880 B
C#
namespace Xylem.Common.Hardware.WaterMeter.Genesis.Protocols.RequestProtocol.Consts
|
|
{
|
|
/// <summary>
|
|
/// Config Exchange error codes.
|
|
/// </summary>
|
|
public enum ConfigExErrors
|
|
{
|
|
#pragma warning disable CS1591 //as a matter of course
|
|
Base = 0x04,
|
|
LockedOut = 0x00,
|
|
AuthenticationFail = 0x01,
|
|
AccessDenied = 0x02,
|
|
UnknownParameter = 0x03,
|
|
InUse = 0x04,
|
|
SizesDoesNotMatch = 0x05,
|
|
CantReadCfgFile = 0x06,
|
|
UserNotKnown = 0x07,
|
|
CantCreateCfgFile = 0x08,
|
|
StoringFailed = 0x09,
|
|
StoreCorrupt = 0x0A,
|
|
ExpectedWrite = 0x0B,
|
|
ExpectedRead = 0x0C,
|
|
StopCycling = 0x0D,
|
|
TooManyOpen = 0x0E,
|
|
NeverOpened = 0x0F,
|
|
FileProtected = 0x1F,
|
|
PartialRecall = 0x2F,
|
|
DefaultPasswordUsed = 0x3F,
|
|
#pragma warning restore
|
|
}
|
|
} |