Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 33
Chapter 2 Program Instructions
BREAK ON/OFF
Field of Application
Statement enabling or disabling break interrupt separately for the
keyboard and each serial communication channel.
Syntax BREAK<nexp>ON|OFF
<nexp> is one of the following devices:
0 = "console:"
1 = "uart1:"
2 = "uart2:"
3 = "uart3:"
Default: Comm. ports: Disabled
Console: Enabled
Remarks
The use of the break interrupt speci ed by a BREAK statement can be
enabled or disabled separately for each serial communication channel or for
the printers built-in keyboard by BREAK ON or BREAK OFF statements.
By default, break interrupt is enabled from the printers keyboard, and
disabled from all communication channels.
BREAK OFF deletes any existing break interrupt character stored in the
printers temporary memory for the speci ed device.
Example
In this example, the ASCII character 127 decimal is selected and enabled as
BREAK character on the communication channel "uart1:". At the same time,
BREAK from the printers keyboard is disabled.
10 BREAK 1,127
20 BREAK 1 ON:BREAK 0 OFF
.....
.....
.....