Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 249
Chapter 2 Program Instructions
STORE OFF
Field of Application
Statement for terminating the storing of an image and resetting
the storing parameters.
Syntax STORE
OFF
Remarks
After having stored all protocol frames of an image, the storing must
be terminated by a STORE OFF statement. Even if you want to store
another image, you must still issue a STORE OFF statement before
the parameters for the new image can be set up using a new STORE
IMAGE statement.
It is recommended always to start an image storing procedure by issuing
a STORE OFF statement to clear the parameters of any existing STORE
IMAGE statement.
Example
This example shows how an Intelhex le is received via the standard IN
channel and stored in the printers memory:
10 STORE OFF
20 INPUT "Name:", N$
30 INPUT "Width:", W%
40 INPUT "Height:", H%
50 INPUT "Protocol:", P$
60 STORE IMAGE N$, W%, H%, P$
70 STORE INPUT 100
80 STORE OFF