ID 21277

#LOAD CONFIG not allowed during active synchronous operation.

Description

The command #LOAD CONFIG is programmed in the NC program while synchronous operation ((#ENABLE AX LINK or #AX LINK ON) is active. 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 using the command #LOAD CONFIG.

Error type

1, Error message from NC program.