problem with GCC ARM_CM3 port

The implementation of prvPortStartFirstTask( void ) in FreeRTOS/Source/portable/GCC/ARM_CM3/port.c begins with the following assembly instructions ” ldr r0, =0xE000ED08 n” /* Use the NVIC offset register to locate the stack. / ” ldr r0, [r0] n” ” ldr r0, [r0] n” ” msr msp, r0 n” / Set the msp back to the start of the stack. */ This strips the stack back to the start of stack as defined in the interrupt vector table. This has the undesirable effect of losing automatic variables that were on the stack at the time the first task is started. This is bad. For example, if tasks are created before scheduler startup and are passed addresses of automatic variables, they will likely see clobbered data. Is there some reason that the stack is stripped back in this way?

problem with GCC ARM_CM3 port

See the following discussion: http://www.freertos.org/FreeRTOSSupportForumArchive/January2015/freertosMainstackpointerresetwhenstartingthescheduler_e5a776c1j.html I think strictly speaking this is against the C standard – however considered desirable when using very small microcontrollers. I think the first Cortex-M port was done on a device with 2K of RAM.