AlarmStopCategory
Short summary
AlarmStopCategory is an enumeration to express how the operation mode handler should react to the error.
Type of the enumartion is DINT
Underlying type: DINT
Components
| Name | Value | Comment |
|---|---|---|
| DONT_STOP | implicit | trigger a stop at end of cycle |
| STOP_AT_END_OF_CYCLE | implicit | stop the machine immediatly |
| STOP_IMMEDIATLY | implicit | disable the machine |
| DISABLE_MACHINE | implicit | disable the machine |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE AlarmStopCategory :
(
(*do not react to the error*)
DONT_STOP,
(*trigger a stop at end of cycle*)
STOP_AT_END_OF_CYCLE,
(*stop the machine immediatly*)
STOP_IMMEDIATLY,
(*disable the machine*)
DISABLE_MACHINE
)DINT;
END_TYPE