Collection of different CRC calculations

Dependents:   Waldo_Embed_V2

Work in Progress

Committer:
sam_grove
Date:
Tue May 14 22:14:09 2013 +0000
Revision:
1:ec8513f94d23
Parent:
0:28e16d33040f
untested but just formatted

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sam_grove 0:28e16d33040f 1
sam_grove 0:28e16d33040f 2 #ifndef CRC_H
sam_grove 0:28e16d33040f 3 #define CRC_H
sam_grove 0:28e16d33040f 4
sam_grove 0:28e16d33040f 5 void CRC32Value(unsigned long &CRC, unsigned char c);
sam_grove 0:28e16d33040f 6 unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );
sam_grove 0:28e16d33040f 7
sam_grove 0:28e16d33040f 8 #endif
sam_grove 0:28e16d33040f 9