SmartPass® Integrated Reader 2450 MHz (High Voltage) System Guide
Table 8-4 Example of Routine to Create Lookup Table
#include <stdio.h>
#define MAX_CHAR 256
#define BITS_CHAR
8
#define SIGN_BIT
0x8000
#define POLY
0x1021
unsigned short crctab [MAX_CHAR];
main ()
{
unsigned short ch;
unsigned short workval;
unsigned short bit;
unsigned short carry;
for (ch = 0; ch != MAX_CHAR; ch++) {
workval = ch << BITS_CHAR;
for (bit = BITS_CHAR; bit != 0; bit--) {
carry = (workval & SIGN_BIT);
workval <<= 1;
if (carry)
workval ^= POLY;
}
crctab[ch] = workval;
}
for (ch = 0; ch != MAX_CHAR; ch++)
printf(“0x%04x\n”, crctab[ch]);
}
8-18
Содержание SmartPass AI1611
Страница 4: ......
Страница 17: ...A Glossary...
Страница 18: ......
Страница 22: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide A 6...
Страница 23: ...B System Specifications...
Страница 24: ......
Страница 26: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide B 4...
Страница 27: ...C Wiring Tables...
Страница 28: ......
Страница 32: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide C 6...
Страница 33: ...1 Introduction...
Страница 34: ......
Страница 40: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide 1 8...
Страница 41: ...2 Preparing the Site...
Страница 42: ......
Страница 52: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide 2 12...
Страница 53: ...3 Quick SmartPass Test...
Страница 54: ......
Страница 63: ...4 Installing Tags on Vehicles...
Страница 64: ......
Страница 71: ...5 Installing SmartPass...
Страница 72: ......
Страница 90: ...6 General Software Information...
Страница 91: ......
Страница 99: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide 6 10...
Страница 100: ...7 Modes of Operation...
Страница 101: ......
Страница 106: ...8 Communication Protocols...
Страница 107: ......
Страница 124: ...9 Commands...
Страница 125: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide 9 2...
Страница 174: ...10 Troubleshooting...
Страница 175: ......
Страница 179: ...SmartPass Integrated Reader 2450 MHz High Voltage System Guide 10 6...