#ifndef CRC_CALC_H_ #define CRC_CALC_H_ #include <stdbool.h> #include <stdint.h> #include <stdlib.h> uint16_t calc_crc16(uint8_t *data, uint16_t len); #endif