-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathcrccheck.c
36 lines (28 loc) · 1.19 KB
/
crccheck.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/****************************************************************************/
/* CRC32 stuff taken and adapted from lib_crc version 1.16 : */
/* Library : lib_crc */
/* File : lib_crc.c */
/* Author : Lammert Bies 1999-2008 */
/* E-mail : [email protected] */
/****************************************************************************/
/* the ATxmega series NVM CRC compatible polynom */
/* on ATxmega you can do this much faster in hardware */
#define P_32 0xEDB88320L
#define D_32 0xFFFFFFFFL
uint32_t crc_tab32_value(uint8_t address) {
uint32_t result;
uint8_t j;
result = (uint32_t)address & 0xffL;
for (j=0; j<8; j++) {
if (result & 0x00000001L) result = (result >> 1) ^ P_32;
else result = result >> 1;
}
return result;
}
uint32_t update_crc_32(uint32_t crc, uint8_t c) {
uint32_t tmp, long_c;
long_c = (uint32_t)c & 0xffL;
tmp = crc ^ long_c;
crc = (crc >> 8) ^ crc_tab32_value(tmp & 0xffL);
return crc;
}