mirror of
https://github.com/rene-dev/stmbl.git
synced 2026-09-25 09:15:44 +08:00
4 lines
144 B
C
4 lines
144 B
C
#include <stdint.h>
|
|
|
|
void calc_crc8_table(uint8_t* crc_table, uint8_t poly);
|
|
uint8_t calc_crc8(uint8_t* data, uint32_t len, uint8_t* crc_table); |