aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/main.cpp
blob: 632a4d94885fdc5fa0cec7e5407d64c7e2de13b6 (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();
		if (serialEventRun) serialEventRun();
	}
        
	return 0;
}