13 lines
371 B
C
13 lines
371 B
C
|
|
#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
|