Firmware2/ArduinoAddons/Arduino_1.x.x/hardware/Melzi/cores/arduino/main.cpp
Bo Herrmannsen 1ba7c31395 Adding Melzi board
these are the files needed to support the Melzi board
2014-12-04 23:45:51 +01:00

21 lines
202 B
C++

#include <Arduino.h>
int main(void)
{
init();
#if defined(USBCON)
USBDevice.attach();
#endif
setup();
for (;;) {
loop();
if (serialEventRun) serialEventRun();
}
return 0;
}