You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// this is included at the end of every sketch |
|
extern "C" __EXPORT int SKETCH_MAIN(int argc, char *argv[]); |
|
int SKETCH_MAIN(int argc, char *argv[]) |
|
{ |
|
printf("%s starting\n", SKETCHNAME); |
|
hal.init(NULL); |
|
setup(); |
|
for(;;) loop(); |
|
return OK; |
|
}
|
|
|