crc.h 226 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #ifndef __CRC16_H__ #define __CRC16_H__ #include "dev.h" #ifdef __cplusplus extern "C" { #endif uint16_t GenerateCRC16(const uint8_t *pdata, uint16_t len); #ifdef __cplusplus } #endif #endif //__CRC16_H__