Write Register - Newland NLS-HR12XX-7X User Manual

Hand-held barcode scanner
Table of Contents

Advertisement

** Enter Setup

Write Register

The write register command is used to write contiguous registers (1 to 256 registers) in the scanner.
Syntax: {Prefix1} {Types} {Lens} {Address} {Datas} {FCS}
Prefix1 : 0x7E 0x00 (2 bytes)
Types : 0x08 (1 byte)
Lens
: 0x00~0xFF (1 byte), byte count, i.e. number of registers written. When Lens=0x00, 256
contiguous registers are to be written.
Address : 0x0000~0xFFFF (2 bytes), starting register address.
Datas
: 0x00~0xFF (1~256 bytes), data to be written into the register(s)
FCS
: CRC-CCITT checksum (2 bytes).
Computation sequence: Types+ Lens+Address+Datas;
polynomial: X
The following C language program is provided for reference.
unsigned int crc_cal_by_bit(unsigned char* ptr, unsigned int len)
{
unsigned int crc = 0;
while(len-- != 0)
{
for(unsigned char i = 0x80; i != 0; i /= 2)
{
crc *= 2;
if((crc&0x10000) !=0)
crc ^= 0x11021;
if((*ptr&i) != 0)
crc ^= 0x1021;
}
ptr++;
}
return crc;
}
Exit Setup
16
12
5
+X
+X
+1 (0x1021), initial value: 0x0000.
12

Hide quick links:

Advertisement

Table of Contents
loading

This manual is also suitable for:

Nls-hr1250-70

Table of Contents