Silent Output

The system variable SILENT can be set to inhibit output of CNC code to the screen. This will increase the speed of code generating. A status message is displayed every 100 lines of output if silent output mode is selected.

Valid settings are:

0 = Output to screen

1 = Inhibit output

 

The following lines included within the start macro. These allow this mode to be selected interactively when generating CNC code. SILENT defaults to 0.

%OPTIONS=SILENTMODE^ON^OFF=SILENT

%IF $SILENT=Y %THEN SILENT=1

$SILENT must be declared in a %DECLARE statement.