2016-10-06 13:21:30 +02:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
2016-12-12 01:12:13 +01:00
|
|
|
#include "Arduino.h"
|
2016-10-06 13:21:30 +02:00
|
|
|
|
2016-11-18 14:07:25 +01:00
|
|
|
#if CONFIG_AUTOSTART_ARDUINO
|
2016-10-06 13:21:30 +02:00
|
|
|
|
2017-02-28 22:36:05 +01: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)
|
|
|
|
{
|
2016-12-12 01:12:13 +01:00
|
|
|
setup();
|
2016-10-06 13:21:30 +02:00
|
|
|
for(;;) {
|
2017-03-20 10:21:56 +01:00
|
|
|
micros(); //update overflow
|
2016-10-06 13:21:30 +02:00
|
|
|
loop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void app_main()
|
|
|
|
{
|
2016-11-18 14:07:25 +01:00
|
|
|
initArduino();
|
2017-02-28 22:36:05 +01:00
|
|
|
xTaskCreatePinnedToCore(loopTask, "loopTask", 4096, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
|
2016-10-06 13:21:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-18 14:07:25 +01:00
|
|
|
#endif
|