2011-10-07 19:18:23 -03:00
|
|
|
#include <stdio.h>
|
2011-10-09 06:41:03 -03:00
|
|
|
#include <unistd.h>
|
2011-10-07 19:18:23 -03:00
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
2011-10-11 03:37:19 -03:00
|
|
|
#include <sched.h>
|
|
|
|
#include <wiring.h>
|
2011-11-07 05:52:12 -04:00
|
|
|
#include <getopt.h>
|
2011-10-29 22:40:54 -03:00
|
|
|
#include "desktop.h"
|
2011-10-07 19:18:23 -03:00
|
|
|
|
|
|
|
void setup(void);
|
|
|
|
void loop(void);
|
|
|
|
|
2011-11-07 05:52:12 -04:00
|
|
|
// the state of the desktop simulation
|
|
|
|
struct desktop_state desktop_state;
|
2011-10-07 19:18:23 -03:00
|
|
|
|
2011-11-07 05:52:12 -04:00
|
|
|
static void usage(void)
|
2011-10-07 19:18:23 -03:00
|
|
|
{
|
2011-11-07 05:52:12 -04:00
|
|
|
printf("Options:\n");
|
|
|
|
printf("\t-s enable CLI slider switch\n");
|
2011-11-07 07:26:52 -04:00
|
|
|
printf("\t-w wipe eeprom and dataflash\n");
|
2011-11-07 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
int opt;
|
|
|
|
|
|
|
|
// default state
|
|
|
|
desktop_state.slider = false;
|
|
|
|
gettimeofday(&desktop_state.sketch_start_time, NULL);
|
|
|
|
|
2011-11-07 07:26:52 -04:00
|
|
|
while ((opt = getopt(argc, argv, "swh")) != -1) {
|
2011-11-07 05:52:12 -04:00
|
|
|
switch (opt) {
|
|
|
|
case 's':
|
|
|
|
desktop_state.slider = true;
|
|
|
|
break;
|
2011-11-07 07:26:52 -04:00
|
|
|
case 'w':
|
|
|
|
unlink("eeprom.bin");
|
|
|
|
unlink("dataflash.bin");
|
|
|
|
break;
|
2011-11-07 05:52:12 -04:00
|
|
|
default:
|
|
|
|
usage();
|
2011-11-07 07:26:52 -04:00
|
|
|
exit(1);
|
2011-11-07 05:52:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// run main setup() function from sketch
|
2011-10-07 19:18:23 -03:00
|
|
|
setup();
|
2011-11-07 05:52:12 -04:00
|
|
|
|
2011-10-09 06:41:03 -03:00
|
|
|
while (true) {
|
2011-10-11 03:37:19 -03:00
|
|
|
struct timeval tv;
|
2011-10-29 22:40:54 -03:00
|
|
|
fd_set fds;
|
|
|
|
int fd_high = 0;
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
2011-10-09 06:41:03 -03:00
|
|
|
loop();
|
2011-10-29 22:40:54 -03:00
|
|
|
|
|
|
|
desktop_serial_select_setup(&fds, &fd_high);
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 100;
|
|
|
|
|
|
|
|
select(fd_high+1, &fds, NULL, NULL, &tv);
|
2011-10-09 06:41:03 -03:00
|
|
|
}
|
2011-10-07 19:18:23 -03:00
|
|
|
return 0;
|
|
|
|
}
|