Pinscape Controller version 1 fork. This is a fork to allow for ongoing bug fixes to the original controller version, from before the major changes for the expansion board project.
Dependencies: FastIO FastPWM SimpleDMA mbed
Fork of Pinscape_Controller by
CRC32/crc32.h@2:c174f9ee414a, 2014-07-22 (annotated)
- Committer:
- mjr
- Date:
- Tue Jul 22 04:33:47 2014 +0000
- Revision:
- 2:c174f9ee414a
Before change to ISR for accelerometer
Who changed what in which revision?
User | Revision | Line number | New 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 |