Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hello,
For reasons unknown, many of the SDK examples use RAM initialization model. This means that when debugging a FreeRTOS core, the code cannot be run more than once because the initializer for
uxCurrentNumberOfTasks is missing. Anyway, the solution is to switch on auto-initialization with ROM model:
Naturally this creates the .cinit section. However, there is no output section defined in linker.cmd generated by SYSCONFIG so I get a warning:
In a manually maintained linker script, I would expect to see something like the following:
.cinit : > OCRAM
<Question>
How do I add an appropriate .cinit section to the Memory Configurator in SYSCONFIG please?