1
0

crc.h 122 B

12345
  1. #ifndef _CRC_HPP_
  2. #include <stdint.h>
  3. uint16_t do_crc(unsigned char *ptr,int len); // 字节查表法求CRC
  4. #endif //CRC