An I/O controller for virtual pinball machines: accelerometer nudge sensing, analog plunger input, button input encoding, LedWiz compatible output controls, and more.

Dependencies:   mbed FastIO FastPWM USBDevice

Fork of Pinscape_Controller by Mike R

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers crc32.h Source File

crc32.h

00001  
00002 #ifndef CRC32_H
00003 #define CRC32_H
00004  
00005 void CRC32Value(unsigned long &CRC, unsigned char c);
00006 unsigned long CRC32(const void *data, int len);
00007  
00008 #endif
00009  
00010