soft_crc.h 218 B

12345678
  1. #ifndef _SOFT_CRC_H
  2. #define _SOFT_CRC_H
  3. #include "stm32f3xx_hal.h"
  4. unsigned short crc_ccitt(unsigned char *, int );
  5. uint16_t Get_Crc16(uint8_t *, uint16_t );
  6. char *Int2String(int num, char *str, uint8_t size);
  7. #endif