Repeating program section repeats, Nesting 8.5 – HEIDENHAIN TNC 620 (81760x-01) User Manual
Page 265

Nesting
8.5
8
TNC 620 | User's Manual
HEIDENHAIN Conversational Programming | 3/2014
265
Repeating program section repeats
Example NC blocks
0 BEGIN PGM REPS MM
...
15 LBL 1
Beginning of program section repeat 1
...
20 LBL 2
Beginning of program section repeat 2
...
27 CALL LBL 2 REP 2
The program section between LBL 2 and this block
...
(block 20) is repeated twice
35 CALL LBL 1 REP 1
The program section between LBL 1 and this block
...
(block 15) is repeated once
50 END PGM REPS MM
Program execution
1 Main program REPS is executed up to block 27.
2 Program section between block 27 and block 20 is repeated
twice.
3 Main program REPS is executed from block 28 to block 35.
4 Program section between block 35 and block 15 is repeated
once (including the program section repeat between 20 and
block 27).
5 Main program REPS is executed from block 36 to block 50 (end
of program).