Description
| When defining a coupling group, it is detected that this coupling group is still currently active.
Example:
Wrong:
N10 G00 X0 Y0 Z0
N20 #SET AX LINK[1,C=X]
N30 #ENABLE AX LINK[1]
:
N100 #SET AX LINK[1,C=Y]
:
N1000 M30
Correct:
N10 G00 X0 Y0 Z0
N20 #SET AX LINK[1,C=X]
N30 #ENABLE AX LINK[1]
:
N90 #DISABLE AX LINK[1]
N100 #SET AX LINK[1,C=Y]
:
N1000 M30
For further information see [PROG// Section: Programming axis couplings]
|