elbear_arduino_bsp/cores/arduino/main.cpp
khristolyubov e36b851783 ready to alpha
подготовка к альфа-тестированию
2024-08-19 22:44:04 +07:00

18 lines
150 B
C++

#define ARDUINO_MAIN
#include "Arduino.h"
int main()
{
pre_init();
setup();
post_init();
while (1)
{
loop();
}
}