diff -r 5664743eaf2f -r 7d1ec160d751 brewco/simulator.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/brewco/simulator.h Fri Nov 27 22:56:00 2015 +0100 @@ -0,0 +1,15 @@ +#ifndef SIMULATOR_H +#define SIMULATOR_H + +#ifdef USE_SIMULATOR + + +#ifdef HAVE_WIRINGPI_H +PI_THREAD (my_simulator_loop); +#else +void *my_simulator_loop(void *); +#endif + +#endif + +#endif