7167 Owner’s Manual Chapter 6: Commands
November 2003
212
which reads and returns word k in NVRAM. When the exception table is full, a new entry
can replace an older, less frequently used entry, by merely rewriting the words for that
table entry.
Check Flip Command
Check Flip Command
ASCII: ESC w F
Hexadecimal: 1B 77 46
Decimal:
27 119 70
Causes a check on the slip table to be fed into the printer, flipped and left with the trailing
edge of the check in the slip feed rollers. Prior to the flip, the check is measured to see that
it is of an appropriate size (see Appendix B) to be flipped. If not, the check is fed back to
the user.
Example:
MSComm1.Output = Chr$(&H1B) & Chr$(&H77) & Chr$(&H46)
Exception:
This command is available only in 7158 Native Mode and 7167 Native Mode.
User Data Storage Commands
Write to User Data Storage
ASCII:
ESC ‘ m a0 a1 a2 d1 ... dm
Hexadecimal:
1B 27 m a0 a1 a2 d1 ... dm
Decimal:
27 39 m a0 a1 a2 d1 ... dm
Value of m:
0 – 255
Writes m bytes of data to the User Data Storage Flash Page at the address specified. The
printer waits for m bytes of data following the 3-byte address, addr.
If any of the memory locations addressed by this command are not currently erased, the
command is not executed.
Example:
MSComm1.Output = Chr$(&H1B) & Chr$(&H27) & Chr$(&H5) & Chr$(&H0) & Chr$(&H0) &
Chr$(&H0) & "Hello"
The above command writes the word ‘Hello’ to the User Data Storage Flash Page.