Programming manual.
CNC 8070
CREATING A PROGRAM.
1.
Comment programming.
·47·
(REF: 1709)
1.8 Comment programming.
Any comment may be associated with the blocks. When executing the program, the CNC
ignores this information.
The CNC offers various methods to include comments in the program.
Programming comments in parenthesis "(" and ")".
The comment must go in parenthesis "(" and ")". Comments programmed this way need not
go at the end of the block; it may go in the middle and there may be more than one comment
in the same block.
Programming comments with the ";" character.
The information to be considered as comment must go after the ";" character. The comment
may be programmed alone in the block or may be added at the end of a block.
Programming comments with the #COMMENT instruction.
The instructions #COMMENT BEGIN and #COMMENT END indicate the beginning and end of
a comment. The blocks programmed between them are considered by the CNC as a single
comment and are ignored when executing the program.
N10 G90 X23.45 F100 (comment) S200 M3 (comment)
N10 G90 X23.45 T1; comment
#COMMENT BEGIN
P1: Machining width.
P2: Machining length.
P3: Machining depth.
#COMMENT END