A simple CRC library used to verify configuration data

Fork of CRC by Andrew Lindsay

Revision:
2:53b7db1f47ea
Parent:
0:28e16d33040f
Child:
3:599d283e5a44
--- a/crc.h	Tue May 14 22:14:09 2013 +0000
+++ b/crc.h	Tue Feb 02 13:56:09 2016 +0000
@@ -2,7 +2,7 @@
 #ifndef CRC_H
 #define CRC_H
 
-void CRC32Value(unsigned long &CRC, unsigned char c);
+void CRC32Value(unsigned long &CRCval, unsigned char c);
 unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );
 
 #endif