Problem
In the TcoAnalogueInspector in the TcoInspectors library, the retry action does not work correctly unless the inspector task is restored before retrying the inspection.
Current workaround
Currently, application engineers have to jump to the retry/inspection step with a minimum delay of 2 contextual PLC cycles before executing the retry action
-or-
manually restore _inspectorTask before retrying inspection on each track:
IF IsFreshState THEN
station.CuProcessData.PresentPartTrack1._inspectorTask.Restore();
station.CuProcessData.PresentPartTrack2._inspectorTask.Restore();
END_IF
Problem
In the TcoAnalogueInspector in the
TcoInspectorslibrary, the retry action does not work correctly unless the inspector task is restored before retrying the inspection.Current workaround
Currently, application engineers have to jump to the retry/inspection step with a minimum delay of 2 contextual PLC cycles before executing the retry action
-or-
manually restore
_inspectorTaskbefore retrying inspection on each track: