-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibcrc8.c
More file actions
117 lines (102 loc) · 4 KB
/
libcrc8.c
File metadata and controls
117 lines (102 loc) · 4 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* libcrc8.c
Library of routines to compute CRC-8 checksum over
an array of unsigned bytes. The crc8 function uses a
table to process the array byte-by-byte rather than
bit-by-bit. The division polynomial and initial
value may both be changed by the user via function calls.
Use:
uint8_t cs = crc8(msg,LengthOfMsg,init)
returns the unsigned byte representing the CRC-8
checksum of the message "msg" of length "LengthOfMsg" bytes
using the initial remainder "init".
By default, the polynomial used in the CRC-8 calculation
is 0x97, also known as "C2"..
See https://users.ece.cmu.edu/~koopman/roses/dsn04/koopman04_crc_poly_embedded.pdf
To set the crc8 function to use a different polynomial, invoke
the function
buildCRC8Table(uint8_t poly)
which recomputes the table used for the CRC8 calculation.
To retrieve the value of the polynomial currently being
used in the crc8 function,
uint8_t poly = getCRC8Poly()
To dump the table currently in use,
dumpCRC8Table()
HD Todd, February, 2022
Adapted from a number of other sources and references,
but particularly note William's paper from
http://ross.net/crc/download/crc_v3.txt, Koopman's work (above),
and https://www.pololu.com/docs/0J44/6.7.6.
*/
#include <stdio.h>
#include <stdint.h>
#include "crc8.h"
/* Predefined table of CRC-8 lookup bytes computed using
the polynomial 0x97, also know as "C2". Per Koopman,
"arguably the best" for messages up to 119 bits long
This table can be recomputed for a different polynomial
using buildCRC8Table(uint8_t poly) below.
*/
uint8_t CRC8POLY = 0x97;
uint8_t CRC8Table[256] = {
0x00, 0x97, 0xb9, 0x2e, 0xe5, 0x72, 0x5c, 0xcb,
0x5d, 0xca, 0xe4, 0x73, 0xb8, 0x2f, 0x01, 0x96,
0xba, 0x2d, 0x03, 0x94, 0x5f, 0xc8, 0xe6, 0x71,
0xe7, 0x70, 0x5e, 0xc9, 0x02, 0x95, 0xbb, 0x2c,
0xe3, 0x74, 0x5a, 0xcd, 0x06, 0x91, 0xbf, 0x28,
0xbe, 0x29, 0x07, 0x90, 0x5b, 0xcc, 0xe2, 0x75,
0x59, 0xce, 0xe0, 0x77, 0xbc, 0x2b, 0x05, 0x92,
0x04, 0x93, 0xbd, 0x2a, 0xe1, 0x76, 0x58, 0xcf,
0x51, 0xc6, 0xe8, 0x7f, 0xb4, 0x23, 0x0d, 0x9a,
0x0c, 0x9b, 0xb5, 0x22, 0xe9, 0x7e, 0x50, 0xc7,
0xeb, 0x7c, 0x52, 0xc5, 0x0e, 0x99, 0xb7, 0x20,
0xb6, 0x21, 0x0f, 0x98, 0x53, 0xc4, 0xea, 0x7d,
0xb2, 0x25, 0x0b, 0x9c, 0x57, 0xc0, 0xee, 0x79,
0xef, 0x78, 0x56, 0xc1, 0x0a, 0x9d, 0xb3, 0x24,
0x08, 0x9f, 0xb1, 0x26, 0xed, 0x7a, 0x54, 0xc3,
0x55, 0xc2, 0xec, 0x7b, 0xb0, 0x27, 0x09, 0x9e,
0xa2, 0x35, 0x1b, 0x8c, 0x47, 0xd0, 0xfe, 0x69,
0xff, 0x68, 0x46, 0xd1, 0x1a, 0x8d, 0xa3, 0x34,
0x18, 0x8f, 0xa1, 0x36, 0xfd, 0x6a, 0x44, 0xd3,
0x45, 0xd2, 0xfc, 0x6b, 0xa0, 0x37, 0x19, 0x8e,
0x41, 0xd6, 0xf8, 0x6f, 0xa4, 0x33, 0x1d, 0x8a,
0x1c, 0x8b, 0xa5, 0x32, 0xf9, 0x6e, 0x40, 0xd7,
0xfb, 0x6c, 0x42, 0xd5, 0x1e, 0x89, 0xa7, 0x30,
0xa6, 0x31, 0x1f, 0x88, 0x43, 0xd4, 0xfa, 0x6d,
0xf3, 0x64, 0x4a, 0xdd, 0x16, 0x81, 0xaf, 0x38,
0xae, 0x39, 0x17, 0x80, 0x4b, 0xdc, 0xf2, 0x65,
0x49, 0xde, 0xf0, 0x67, 0xac, 0x3b, 0x15, 0x82,
0x14, 0x83, 0xad, 0x3a, 0xf1, 0x66, 0x48, 0xdf,
0x10, 0x87, 0xa9, 0x3e, 0xf5, 0x62, 0x4c, 0xdb,
0x4d, 0xda, 0xf4, 0x63, 0xa8, 0x3f, 0x11, 0x86,
0xaa, 0x3d, 0x13, 0x84, 0x4f, 0xd8, 0xf6, 0x61,
0xf7, 0x60, 0x4e, 0xd9, 0x12, 0x85, 0xab, 0x3c
};
/* Build an array with CRC values of all 256 possible bytes
using the polymomial provided
*/
void buildCRC8Table(uint8_t poly)
{
uint8_t c;
CRC8POLY = poly;
for (uint16_t i = 0; i < 256; i++) {
c = i;
for (uint8_t j = 0; j < 8; j++) c = ( (c & 0x80) == 0) ? c<<1 : (c<<1) ^ poly;
CRC8Table[i] = c;
}
}
uint8_t getCRC8Poly(void) {
return CRC8POLY;
};
void dumpCRC8Table(void) {
printf("Dump of CRC8 table for polynomial 0x%02x\n", getCRC8Poly());
for (uint8_t i=0; i<32; i++) {
printf("\n\t");
for (uint8_t j=0; j<8; j++) printf("0x%02x, ", CRC8Table[i*8+j]);
};
printf("\n");
return;
};
uint8_t crc8(uint8_t *msg, int lengthOfMsg, uint8_t init) {
while (lengthOfMsg-- > 0) init = CRC8Table[ (init ^ *msg++)];
return init;
};