RIOT/sys/arduino/post.snip
Alexandre Abadie 56e1b96a30
initial commit
2022-02-08 11:30:49 +01:00

13 lines
170 B
Plaintext

int main(void)
{
/* run the Arduino setup */
setup();
/* and the event loop */
while (1) {
loop();
}
/* never reached */
return 0;
}