ID 20233

ENDFOR must be programmed exclusively in the block.

Description

In the same NC block, a control block instruction was programmed with further NC commands. After a $ENDFOR no further NC commands may be programmed.

Example:

Wrong:

N10   G00 X0 Y0 Z0

N20   $FOR P1=1, 10, 2

:

N30   $ENDFOR G01 X100 F10000

:

N1000 M30

Correct:

N10   G00 X0 Y0 Z0

N20   $FOR P1=1, 10, 2

:

N30   $ENDFOR

N40   G01 X100 F10000

:

N1000 M30

For further information see [PROG// Section: Counting loop]

Response

Class

2

Abort NC program processing.

Solution

Class

3

Check and modify NC program. Move the not permissible NC commands after $ENDFOR to other NC blocks or delete them.

Error type

1, Error message from NC program.