15 lines
256 B
C++
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
|