7 lines
284 B
C#
7 lines
284 B
C#
|
namespace InnovEnergy.Lib.Devices.Trumpf.SystemControl;
|
||
|
|
||
|
public enum ErrorPolicy : UInt16
|
||
|
{
|
||
|
Relaxed = 0, // 0 = relaxed (System keeps running even if some slaves are in error state.)
|
||
|
Strict = 1, // 1 = strict (System shuts down as soon as one component is in error state.)
|
||
|
}
|