2011-07-19 08:09:03 +00:00
|
|
|
#ifndef SIMULATOR_H
|
|
|
|
#define SIMULATOR_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-07-20 04:28:41 +00:00
|
|
|
void simlcdDisplayUpdate();
|
2011-07-19 08:09:03 +00:00
|
|
|
|
|
|
|
int simButtonPressed(int button);
|
|
|
|
|
|
|
|
int simGetLED(int led);
|
|
|
|
void simSetLED(int led,uint32_t bitVal);
|
|
|
|
void simSetLEDHook(int led);
|
|
|
|
|
|
|
|
|
|
|
|
int simulator_main(void);
|
|
|
|
|
|
|
|
#endif
|