30WS_DLL_PUBLIC uint8_t
crc8_0x2F(
const uint8_t *buf, uint32_t len, uint8_t seed);
40WS_DLL_PUBLIC uint8_t
crc8_0x37(
const uint8_t *buf, uint32_t len, uint8_t seed);
50WS_DLL_PUBLIC uint8_t
crc8_0x3B(
const uint8_t *buf, uint32_t len, uint8_t seed);
WS_DLL_PUBLIC uint8_t crc8_0x37(const uint8_t *buf, uint32_t len, uint8_t seed)
Calculates a CRC8 checksum for the given buffer with the polynomial 0x37 using the precompiled CRC ta...
Definition crc8.c:166
WS_DLL_PUBLIC uint8_t crc8_0x2F(const uint8_t *buf, uint32_t len, uint8_t seed)
Calculates a CRC8 checksum for the given buffer with the polynomial 0x2F using the precompiled CRC ta...
Definition crc8.c:154
WS_DLL_PUBLIC uint8_t crc8_0x3B(const uint8_t *buf, uint32_t len, uint8_t seed)
Calculates a CRC8 checksum for the given buffer with the polynomial 0x3B using the precompiled CRC ta...
Definition crc8.c:183