Files
system-control/main/main.cpp
Peter Siegmund 26723db8d8 code cleanup
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2025-06-20 21:35:09 +02:00

16 lines
300 B
C++

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