Mirror with some correction

Dependencies:   mbed FastIO FastPWM USBDevice

Committer:
arnoz
Date:
Fri Oct 01 08:19:46 2021 +0000
Revision:
116:7a67265d7c19
Parent:
2:c174f9ee414a
- Correct information regarding your last merge

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mjr 2:c174f9ee414a 1
mjr 2:c174f9ee414a 2 #ifndef CRC32_H
mjr 2:c174f9ee414a 3 #define CRC32_H
mjr 2:c174f9ee414a 4
mjr 2:c174f9ee414a 5 void CRC32Value(unsigned long &CRC, unsigned char c);
mjr 2:c174f9ee414a 6 unsigned long CRC32(const void *data, int len);
mjr 2:c174f9ee414a 7
mjr 2:c174f9ee414a 8 #endif
mjr 2:c174f9ee414a 9
mjr 2:c174f9ee414a 10