ID 21287

Definition of a previous control area has not been finished.

Description

It is noted that the definition of a new control area with #CONTROL AREA BEGIN[...] is still programmed within the NC program sequence of the previous control area. But the nested definition of control areas is not allowed.

Syntax example:

:
N10 #CONTROL AREA BEGIN...
N20 G01 X10 Y10
N30 G01 X20 Y20
N40 #CONTROL AREA BEGIN... -> ERROR
:
Nxx #CONTROL AREA END
:

Response

Class

2

Abort NC program processing.

Solution

Class

3

Check and modify NC program. The definition of a new control area only is permissible, if the definition of a previous control area is finished with #CONTROL AREA END.

Syntax example:

:
N10 #CONTROL AREA BEGIN...
N20 G01 X10 Y10
N30 G01 X20 Y20
:
Nxx #CONTROL AREA END
Nxx #CONTROL AREA BEGIN...

Error type

1, Error message from NC program.