Reference Manual
PMAC 2 Software Reference
302 PMAC Program Command Specification
Upon the return, X10 Y10 would be executed as a move according to the move mode in
force, which is LINEAR.
If the specified program and/or line label do not exist, the CALL command is ignored,
and the program continues as if it were not there. No error is generated.
Example
CALL500 ; to Prog 500 at the top (N0)
CALL500.1 ; to Prog 500 label N10000
CALL500.12 ; to Prog 500 label N12000
CALL500.123 ; to Prog 500 label N12300
CALL500.1234 ; to Prog 500 label N12340
CALL500.12345 ; to Prog 500 label N12345
CALL700 D10 E20 ; to Prog 700 passing D and E
See Also
On-line command B{constant}
Program commands GOTO, GOSUB, READ, RETURN, G{data}, M{data}, T{data},
D{data}, N{constant}, O{constant}, PRELUDE
CC0
Function
Turn Off Cutter Radius Compensation
Type
Motion program (PROG and ROT)
Syntax
CC0
Remarks
This turns off the cutter radius compensation mode, reducing it gradually through the
next move. This is equivalent to the G40 command of the machine-tool standard RS-274
language.
Example
CCR0.5 ; 1/2 unit cutter radius
CC1 ; Cutter compensation on to the left
X10 Y10 ; Compensation introduced during this move
X10 Y20
X20 Y20
X20 Y10
X10 Y10
CC0 ; Cutter compensation off
X0 Y0 ; Compensation eliminated during this move
OPEN PROG 1000 ; G-Code Subprogram
...
N40000 CC0 RETURN ; To implement G40 directly in PMAC
See Also
Cutter (Tool) Radius Compensation
Program commands CC1, CC2, CCR{data}
CC1
Function
Turn On Cutter Radius Compensation Left
Type
Motion program (PROG and ROT)
Syntax
CC1
Remarks
This turns on the cutter radius compensation mode, introducing the compensation
gradually through the next move. The cutter is offset to the left of the programmed tool
path, looking in the direction of cutter movement. The plane of the compensation is
determined by the NORMAL command. This is equivalent to the G41Error!
Bookmark not defined. command of the machine-tool standard RS-274