1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-12 23:08:52 +01:00
Arduino/hardware/sam/cores/sam/main.cpp

20 lines
191 B
C++
Raw Normal View History

2011-06-01 01:54:47 +02:00
#define ARDUINO_MAIN
#include "Arduino.h"
2011-09-06 21:05:41 +02:00
/*
* \brief Main entry point of Arduino application
*/
int main( void )
2011-06-01 01:54:47 +02:00
{
2011-09-06 21:05:41 +02:00
init() ;
setup() ;
2011-06-01 01:54:47 +02:00
2011-09-06 21:05:41 +02:00
for ( ; ; )
{
2011-09-06 21:05:41 +02:00
loop() ;
}
2011-09-06 21:05:41 +02:00
// return 0 ;
}