Files
CHJ/user/Utility/CRC.h

13 lines
371 B
C
Raw Permalink Normal View History

2026-03-20 21:16:58 +08:00
#ifndef __CRC_h__
#define __CRC_h__
#define CRC16_POLY 0x1021;
#define CRC16_INIT_VAL 0
//**************************************************************************************************
u8 CRC8(u8 *ucDptr, u8 ucLen);
u16 SlowCRC16(u16 sum, u32 codeAdr, u16 Len);
u8 CRC8_Talbe_I2CWord(u16 Data);
u8 I2CWordCrc(u8 crcH, u8 crcL);
#endif