M17_Implementations/SP5WWP/m17-decoder/crc.h

13 wiersze
161 B
C

#ifndef CRC_H
#define CRC_H
#ifdef __cplusplus
extern "C" {
#endif
uint16_t CRC_M17(const uint8_t *in, const uint16_t len);
#ifdef __cplusplus
}
#endif
#endif