7 lines
173 B
C
7 lines
173 B
C
#include "stdint.h"
|
|
|
|
uint16_t get_crc_16(uint8_t *buf, uint16_t size );
|
|
uint16_t get_crc16(uint16_t *buf, uint16_t size );
|
|
uint16_t get_crc_one(uint16_t crc, uint8_t buf);
|
|
|