2
Subprograms, Macros 12.98
2.10 Sin
le block su
ression
SBLOF
SBLON
SW 4.3 and hi
her
2
840D
NCU 571
840D
NCU 572
NCU 573
FM-NC
810D
840Di
ï›™
Siemens AG 2000. All rights reserved
2-108
SINUMERIK 840D/840Di/810D/FM-NC Programming Guide Advanced (PGA)
−
04.00 Edition
2.10 Single block suppression, SBLOF, SBLON (SW 4.3 and higher)
Programming
PROC ... SBLOF
SBLON
; The command can be programmed in a PROC block or in a separate
block
; The command must be programmed in a separate block
Explanation
SBLOF
Deactivate single block
SBLON
Reactivate single block
Function
Program-specific single block suppression
With all single block types the programs marked with
SBLOF are executed in their entirety like one block.
SBLOF is written in the PROC line and is valid until
the end of the subprogram or until it is aborted.
SBLOF is also valid in the called subprograms.
Example:
PROC EXAMPLE SBLOF
G1 X10
RET
Single block suppression in the program
SBLOF can be alone in a block. From this block
onwards, the single block mode is deactivated until
•
the next SBLON or
•
until the end of the active subprogram level.
Example:
N10 G1 X100 F1000
N20 SBLOF
N30 Y20
N40 M100
N50 R10=90
N60 SBLON
N70 M110
N80 ...
Deactivate single block
Reactivate single block