crc.h 157 B

12345678910
  1. #ifndef APP_CRC_H__
  2. #define APP_CRC_H__
  3. #include <stdint.h>
  4. #include <string.h>
  5. uint16_t make_crc(uint8_t *pData, int nLength);
  6. #endif /* APP_CRC_H__ */