18 lines
1.9 KiB
C#
18 lines
1.9 KiB
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace InnovEnergy.Lib.Devices.Trumpf.SystemControl;
|
|
|
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
|
public enum AlarmMessage
|
|
{
|
|
NoAlarm = 0,
|
|
BmsCommunicationTimeoutHasOccured = 40302, // BMS communication timeout has occured.
|
|
Rs485CommunicationAlarm = 40303, // RS-485 communication alarm.
|
|
SoftwareVersionsOfSystemControlAndModulesDoNotMatch1 = 40412, // Software versions of system control and module(s) do not match.
|
|
SoftwareVersionsOfSystemControlAndModulesDoNotMatch2 = 40413, // Software versions of system control and module(s) do not match.
|
|
SoftwareVersionsOfSystemControlAndModulesDoNotMatch3 = 40414, // Software versions of system control and module(s) do not match.
|
|
SoftwareVersionsOfSystemControlAndModulesDoNotMatch4 = 40415, // Software versions of system control and module(s) do not match.
|
|
SoftwareVersionsOfSystemControlAndModulesDoNotMatch5 = 40416, // Software versions of system control and module(s) do not match.
|
|
NoSlaveModuleWasFoundPleaseCheckRs485Connection = 40304, // No slave module was found, please check RS-485 connection(s).
|
|
NumberOfOrCombinationOfConnectedSlaveTypesNotSupported = 40305, // Number of or combination of connected slave types not supported.
|
|
} |