Specifications
Rev. A Command Descriptions 1-5
TM–U375/U375P Information Manual
FF
[Name] Print and eject cut sheet (in standard mode)
Print and return to standard mode (in page mode)
[Format] ASCII FF
Hex 0C
Decimal 12
In standard mode, FF prints the data in the print buffer and ejects the cut sheet (slip or validation
paper). This command is enabled only when a cut sheet is selected for printing. When the eject
length has been set by ESC C, the printer ejects the cut sheet based on the current eject length
regardless of the cut-sheet paper sensor state. Otherwise, the printer ejects the cut sheet completely.
Paper from the paper roll is not ejected, even if it is also selected.
After cut-sheet ejection, the paper roll is selected for printing. The cut sheet is ejected in the forward
direction only.
In page mode, FF prints the data in the print buffer collectively and returns to standard mode. The
buffer data is deleted after being printed, but the paper is not ejected.
Program Example <standard mode> Print Sample <standard mode>
PRINT #1, CHR$(&H1B);"c0";CHR$(4);← Select slip
PRINT #1, "AAAAA"; CHR$(&HA);
PRINT #1, "BBBBB"; CHR$(&HC);
AAAAA
BBBBB
The paper is completely ejected.
Program Example <page mode> Print Sample <page mode>
PRINT #1, CHR$(&H1B);"L";←Select p age m ode
PRINT #1, CHR$(&H1B);"W";CHR$(0);CHR$(0);CHR$(0);
CHR$(0);CHR$(30);CHR$(0);CHR$(30);CHR$(0);
PRINT #1, CHR$(&H1B);"T";CHR$(0);
PRINT #1, "AAAAA"; CHR$(&HA);←Store characters for print ing
PRINT #1, "BBBBB"; CHR$(&HA);←Store characters for print ing
PRINT #1, "CCCCC"; CHR$(&HC);←Batch print
1
2
AAAAA
BBBBB
CCCCC