Collection of different CRC calculations

Dependents:   Waldo_Embed_V2

Work in Progress

crc.h

Committer:
sam_grove
Date:
2013-05-14
Revision:
0:28e16d33040f

File content as of revision 0:28e16d33040f:


#ifndef CRC_H
#define CRC_H

void CRC32Value(unsigned long &CRC, unsigned char c);
unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );

#endif