sys_crc.h 209 B

12345678910111213141516171819
  1. #ifndef __SYS_CRC_H__
  2. #define __SYS_CRC_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <stdint.h>
  7. uint16_t UTIL_CRC(uint8_t *pData,int nLength);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif //__SYS_CRC_H__