8 lines
412 B
C#
8 lines
412 B
C#
|
namespace InnovEnergy.Lib.Devices.Trumpf.SystemControl;
|
||
|
|
||
|
public enum SubSlavesErrorPolicy : UInt16
|
||
|
{
|
||
|
Strict = 0, // (AC-DC module switches to error state if at least one submodules is in error state
|
||
|
Relaxed = 1, // (AC-DC module switches to error state if all submodules are in error state.)
|
||
|
Off = 2, // (If possible AC-DC module continues operation even if all submodules are in error state.
|
||
|
}
|