eive_arduino_interface/helper/crc_ccitt.h

10 lines
150 B
C
Raw Permalink Normal View History

2020-04-02 18:32:37 +02:00
#ifndef CRC_CCITT_H_
#define CRC_CCITT_H_
#include <stdint.h>
uint16_t Calculate_CRC(uint8_t const input[], uint32_t length);
#endif /* CRC_H_ */