PicoWAN SDK Documentation
crc8.h
Go to the documentation of this file.
1 
31 #ifndef _CRC8_H_
32 #define _CRC8_H_
33 
34 #include <stdint.h>
35 
36 
46 uint8_t crc8(uint8_t crc, const uint8_t *buffer, uint32_t len);
47 
48 #endif /* CRC8_H */
uint8_t crc8(uint8_t crc, const uint8_t *buffer, uint32_t len)
Compute the CRC8 of a buffer.
Definition: crc8.c:53