** Enter Setup
Read EEPROM
The scanner has 512 bytes of EEPROM. The EEPROM read command is used to read the contents from
1 to 256 contiguous addresses of the EEPROM.
Syntax: {Prefix1} {Types} {Lens} {Address} {Datas} {FCS}
Prefix1 :
0x7E 0x00
Types
: 0x05 Lens
: 0x01
Address:
0x0000~0xFFFF (2 bytes), starting EEPROM address to read.
Datas
: 0x00~0xFF, number of EEPROM addresses to be read. When Datas=0x00, 256
contiguous addresses are to be read.
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.
20