14 lines
223 B
C
14 lines
223 B
C
|
|
#ifndef CRC_ALGS_H
|
|
#define CRC_ALGS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint32_t CRC_calc;
|
|
extern uint32_t CRC_ref;
|
|
|
|
|
|
uint16_t crc16(uint8_t *data, uint32_t data_size);
|
|
uint32_t crc32(uint8_t *data, uint32_t data_size);
|
|
|
|
#endif |