RS-232 only
SYMPTOMS | POSSIBLE CAUSE(S) | SOLUTION |
|
|
|
Com port at the host not | Check to make sure the baud rate | |
| working or not configured | and parity of the scanner and the |
Scans OK | properly | communication port match and the |
|
| program is looking for |
Does not | Cable not connected to the | data. |
communicate | proper com port |
|
properly to the |
|
|
host | Com port not operating |
|
| properly |
|
|
|
|
NOTE: Metrologic’s default of 7 data bits, space parity is usually what is expected when an IBM compatible type PC is configured for 8 data bits, no parity.
SYMPTOMS | SOLUTION |
|
|
Host receiving data but data does not | Check that the scanner and host are |
look correct | configured for the same interface format |
|
|
Characters are being dropped | Add some intercharacter delay to the |
| transmitted output. This can be programmed |
| into the scanner through ScanSelect |
|
|
If an
10 CLS
20 ON ERROR GOTO 100
30OPEN “COM1:9600,S,7,1,CS0,DS0,CD0,LF” AS #1
35PRINT “SCAN A FEW BAR CODES”
40LINE INPUT #1, BARCODE$
50PRINT BARCODE$
60K$ = INKEY$: IF K$ = CHR$(27) THEN GOTO 32766
70GOTO 40
100PRINT “ERROR NO.”; ERR; “ PRESS ANY KEY TO TERMINATE.”
110K$ = INKEY$: IF K$ = “” THAN GOTO 110
32766 CLOSE: SYSTEM
32767 END
26