A simple CRC library used to verify configuration data

Fork of CRC by Andrew Lindsay

crc.h

Committer:
SomeRandomBloke
Date:
2016-02-02
Revision:
2:53b7db1f47ea
Parent:
0:28e16d33040f
Child:
3:599d283e5a44

File content as of revision 2:53b7db1f47ea:


#ifndef CRC_H
#define CRC_H

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

#endif