aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/main.cpp
blob: 1c2ea9a3c13b9f96dd1c2d8f4718c6a3dd7df63a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#define ARDUINO_MAIN
#include <Arduino.h>

int main(void)
{
	init();

	setup();
    
	for (;;) {
		loop();
		serialEventRun();
	}
        
	return 0;
}