void vPortStartFirstTask( void )
{
__asm volatile(
" 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. */
" cpsie i n" /* Globally enable interrupts. */
" svc 0 n" /* System call to start first task. */
" nop n"
);
}
Is the current portable as of version 7.10 considered working on STM32F2:s or is there anything I have to modify to get it running?
Sincerely,Gustaf Lindström