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

int main(void)
{
	init();

#if defined(USBCON)
	USB.attach();
#endif
	
	setup();
    
	for (;;) {
		loop();
		if (serialEventRun) serialEventRun();
	}
        
	return 0;
}