Collection of different CRC calculations

Dependents:   Waldo_Embed_V2

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers crc.h Source File

crc.h

00001 
00002 #ifndef CRC_H
00003 #define CRC_H
00004 
00005 void CRC32Value(unsigned long &CRC, unsigned char c);
00006 unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );
00007 
00008 #endif
00009