handleCycleManagerError
Short summary
This method handles the resume function of the cycle manager. Should be called befor all other handles.
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| resume | BOOL | if true, will acknowledge error and return to previous step | input |
Code
Declaration
METHOD PROTECTED handleCycleManagerError
VAR_INPUT
(*if true, will acknowledge error and return to previous step*)
resume :BOOL;
END_VAR
Implementation
IF(resume)THEN
THIS^.acknowledge();
END_IF