starting MCU development

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-15 17:25:53 +02:00
parent 9806d4c9ae
commit 1c7942384b
7 changed files with 21 additions and 23 deletions

14
main/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#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