Files
system-control/main/main.cpp
2025-06-15 17:29:22 +02:00

15 lines
256 B
C++

#include "app_task.h"
#include "freertos/FreeRTOS.h"
#ifdef __cplusplus
extern "C"
{
#endif
void app_main(void)
{
xTaskCreatePinnedToCore(app_task, "main_loop", 4096, NULL, 5, NULL, tskIDLE_PRIORITY + 1);
}
#ifdef __cplusplus
}
#endif