crc_cal.h 229 B

12345678910
  1. #ifndef __CRC_CAL_H
  2. #define __CRC_CAL_H
  3. typedef unsigned char uint8_t;
  4. typedef unsigned short int uint16_t;
  5. typedef unsigned int uint32_t;
  6. extern uint32_t CRC32_Calculate(uint8_t *pData, uint16_t Length);
  7. #endif