mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-10 21:24:12 +01:00
1b3ae5fa63
Made some helper class for files filtering. platforms.txt now contains only one platform at a time. Some cleanup in Compiler and AvrDudeUploader classes.
21 lines
196 B
C++
Executable File
21 lines
196 B
C++
Executable File
#include <Arduino.h>
|
|
|
|
int main(void)
|
|
{
|
|
init();
|
|
|
|
#if defined(USBCON)
|
|
USB.attach();
|
|
#endif
|
|
|
|
setup();
|
|
|
|
for (;;) {
|
|
loop();
|
|
if (serialEventRun) serialEventRun();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|