mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
afb60e1163
This is a step towards providing portability across AVR's by simply including an appropriate header file.
16 lines
128 B
C++
Executable File
16 lines
128 B
C++
Executable File
#define ARDUINO_MAIN
|
|
#include <Arduino.h>
|
|
|
|
int main(void)
|
|
{
|
|
init();
|
|
|
|
setup();
|
|
|
|
for (;;)
|
|
loop();
|
|
|
|
return 0;
|
|
}
|
|
|