Description
| An axis programmed in the axis exchange command is currently used in synchronous operation mode and must not be released.
Example:
Wrong:
N30 #SET AX LINK[1, B=X]
N40 #ENABLE AX LINK[1]
:
N70 #PUT AX[X]
:
N80 #DISABLE AX LINK[1]
:
N1000 M30
Correct:
N30 #SET AX LINK[1, B=X]
N40 #ENABLE AX LINK[1]
:
N70 #DISABLE AX LINK[1]
:
N80 #PUT AX[X]
:
N1000 M30
For further information see [PROG// Section: Synchronous operation]
|