arduino-esp32/cores/esp32/main.cpp

28 lines
454 B
C++
Raw Normal View History

2016-10-06 13:21:30 +02:00
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "Arduino.h"
2016-10-06 13:21:30 +02:00
#if CONFIG_AUTOSTART_ARDUINO
2016-10-06 13:21:30 +02:00
#if CONFIG_FREERTOS_UNICORE
#define ARDUINO_RUNNING_CORE 0
#else
#define ARDUINO_RUNNING_CORE 1
#endif
2016-10-06 13:21:30 +02:00
void loopTask(void *pvParameters)
{
setup();
2016-10-06 13:21:30 +02:00
for(;;) {
loop();
}
}
extern "C" void app_main()
{
initArduino();
xTaskCreatePinnedToCore(loopTask, "loopTask", 4096, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
2016-10-06 13:21:30 +02:00
}
#endif