Genicom GEK 00031B User Manual
Page 109

GEK-00029B
5000 Series Programmer’s Manual
109
CR
Carriage Return: CR moves the current print position to the left
margin. If auto LF on CR is set, either by Emulation Settings menu
option or by command (ESC 5), then a line feed will also be executed.
Decimal:
13
Hex:
0D
BASIC:
CHR$(13);
DC1
Device Code 1: Select printer (parallel interface only). DC1 sets the
printer online after being deselected by an ESC Q.
Decimal:
17
Hex:
11
BASIC:
CHR$(17);
DC2
Device Code 2: Sets 10 cpi printing. DC2 sets the printer to 10 cpi (5
cpi if double-wide is enabled). It cancels condensed printing mode
and 12 cpi printing.
Decimal:
18
Hex:
12
BASIC:
CHR$(18);
DC3
Device Code 3: Deselect printer. When using a serial interface, DC3
(XOFF) is sent to the host to indicate the printer is not ready to
accept data. When using a parallel interface, a received DC3 is
treated as a NUL.
Decimal:
19
Hex:
13
BASIC:
CHR$(19);
DC4
Device Code 4: Cancel double-wide printing by line. DC4 cancels
one-line double-wide print set by an SO code. It does not cancel
continuous double-wide printing set by ESC W 1.
Decimal:
20
Hex:
14
BASIC:
CHR$(20);
ESC
Escape: Introduces an escape sequence. ESC tells the printer that
the following characters are to be interpreted as a printer command,
not printable data. See the section on Proprinter escape sequences.
Decimal:
27
Hex:
1B
BASIC:
CHR$(27);
FF
Form Feed: Advances the paper to the next top of form with the print
position at the left. If a top margin is set, paper advances to the first
print line below the margin.
Decimal:
12
Hex:
0C
BASIC:
CHR$(12);