Skip to main content

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

NameValueComment
DONT_STOPimplicittrigger a stop at end of cycle
STOP_AT_END_OF_CYCLEimplicitstop the machine immediatly
STOP_IMMEDIATLYimplicitdisable the machine
DISABLE_MACHINEimplicitdisable 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