Tool/software:
Hi,
I'm looking for a simple example project with FreeRTOS that runs on Core-1.
I've successfully run the "Hello World" FreeRTOS project on Core-1.
In main.c, a static task is created in app_main.c, which runs a loop:
printf("%d\n", counter++); vTaskDelay(500);}The problem is that it starts running but crashes inside vTaskDelay(500);.
I suspect that I might have made a mistake in linker.cmd, possibly misplacing the interrupts.
The same project (the original "Hello World") runs fine on Core-0.
Thanks,
Eli

