Loading...
 
Skip to main content

System Workbench for STM32


Bootloader and application code imlepentation

In the bootloader program set the MSP too with __set_MSP(0x08008000).

And if debug step from step the bootloader change the MSP correctly.

I think that the problem isn't in the bootloader if it worked with another test application mentioned above.

__set_MSP(0x08008000) this is wrong ....


sholud be casted to poiter.

__set_MSP((uint32_t *)0x08008000)