mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-09 07:42:05 +08:00
3f8e95952a
version: sunnypilot v2026.002.000 (dev)
date: 2026-06-29T03:29:47
master commit: 31dc4d8e52
20 lines
362 B
C
20 lines
362 B
C
#pragma once
|
|
|
|
uint8_t crc_checksum(const uint8_t *dat, int len, const uint8_t poly) {
|
|
uint8_t crc = 0xFFU;
|
|
int i;
|
|
int j;
|
|
for (i = len - 1; i >= 0; i--) {
|
|
crc ^= dat[i];
|
|
for (j = 0; j < 8; j++) {
|
|
if ((crc & 0x80U) != 0U) {
|
|
crc = (uint8_t)((crc << 1) ^ poly);
|
|
}
|
|
else {
|
|
crc <<= 1;
|
|
}
|
|
}
|
|
}
|
|
return crc;
|
|
}
|