[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

LaserWriters



One additional comment about LaserWriters I forgot to mention: you may
drive them with 19200 Baud instead of the default 9600 Baud. Just dump
this PostScript file to your printer and afterwards change the namespace
object to reflect the changed settings, then restart the spooler, which
obviously will need a new serial stream: (Note: the "%" is PostScripts
comment start)

	--jc

;;; from file S:>jc>postscript>maint.ps
%%------------------------------------------------------------------------
%% Switch baud rate on DB25 port

	serverdict begin 0 exitserver
	statusdict begin
	25 sccbatch
	pstack
	%25 9600 0 setsccbatch			%9600 baud, 0 = ignore parity
	25 19200 0 setsccbatch
	25 sccbatch
	pstack
	end

%%------------------------------------------------------------------------
%% Toggle start page processing

	serverdict begin 0 exitserver
	statusdict begin
	true setdostartpage
	end

%%------------------------------------------------------------------------