5 lines
169 B
C
5 lines
169 B
C
/* crc.h */
|
|
|
|
void CRC_Init(unsigned short *crcvalue);
|
|
void CRC_ProcessByte(unsigned short *crcvalue, byte data);
|
|
unsigned short CRC_Value(unsigned short crcvalue);
|