crc_calc.h 162 B

123456789101112
  1. #ifndef CRC_CALC_H_
  2. #define CRC_CALC_H_
  3. #include <stdbool.h>
  4. #include <stdint.h>
  5. #include <stdlib.h>
  6. uint16_t calc_crc16(uint8_t *data, uint16_t len);
  7. #endif