Innovenergy_trunk/csharp/Lib/Devices/Trumpf/SystemControl/ErrorPolicy.cs

7 lines
284 B
C#
Raw Normal View History

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.)
}