crc_cal.h 204 B

1234567
  1. #ifndef __CRC_CAL_H
  2. #define __CRC_CAL_H
  3. #include "stm32f3xx_hal.h"
  4. extern uint32_t CRC32_Calculate(uint8_t *pData, uint16_t Length);
  5. extern uint16_t CRC16_Xmodem(uint8_t *pData, uint16_t Length);
  6. #endif