ID 20206

Command must be programmed exclusively in NC block.

Description

A control block sequence, starting with the dollar character $, is programmed with other NC commands in the same NC block.

Example:

Wrong:

N10   G00 X0 Y0 Z0

N20   $FOR P10=0, 20, 1 G01 X10 F100

N30     G91 X5

N40   $ENDFOR

:

N1000 M30

Correct:

N10   G00 X0 Y0 Z0

N15   G01 X10 F100

N20   $FOR P10=0, 20, 1

N30     G91 X5

N40   $ENDFOR

:

N1000 M30

Response

Class

2

Abort NC program processing.

Solution

Class

3

Check and modify NC program. Programming of the control block sequence and the other NC commands in separate NC blocks.

Error type

1, Error message from NC program.