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 Mike R

Committer:
mjr
Date:
Mon Feb 15 23:03:55 2016 +0000
Revision:
68:edfecf67a931
Parent:
2:c174f9ee414a
Finalize USB library updates to fix compatibility problems introduced in USBHAL_KL25Z overhaul.

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