ID 21277

#LOAD CONFIG not allowed during active synchronous operation.

Description

During active synchronous operation (#ENABLE AX LINK or #AX LINK ON), the command #LOAD CONFIG is programmed in the NC program. This is not permitted.

Example:

Wrong:

N10   G00 X0 Y0 Z0

N30   #SET AX LINK[1, B=X]

N40   #ENABLE AX LINK[1]

:

N100  #LOAD CONFIG [AX]

:

N1000 M30

Correct:

N10   G00 X0 Y0 Z0

N30   #SET AX LINK[1, B=X]

N40   #ENABLE AX LINK[1]

:

N90   #DISABLE AX LINK[1]

N100  #LOAD CONFIG [AX]

:

N1000 M30

Response

Class

2

Abort NC program processing.

Solution

Class

3

Check and modify the NC program. Deselect the active synchronous operation with #DISABLE AX LINK or #AX LINK OFF (ALL) before the use of the command #LOAD CONFIG.

Error type

1, Error message from NC program.