An input/output controller for virtual pinball machines, with plunger position tracking, accelerometer-based nudge sensing, button input encoding, and feedback device control.

Dependencies:   USBDevice mbed FastAnalogIn FastIO FastPWM SimpleDMA

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