Loading...
 

Zephyr project on STM32

   Zephyr Workbench, a VSCode extension to manage Zephyr on STM32.
It enables users to easily create, develop, and debug Zephyr applications.
Main features:
  • Install host dependencies.
  • Import toolchain and SDK.
  • Create, configure, build and manage apps.
  • Debug STM32.
You can directly download it from the VSCode marketplace
For more details, visit the Zephyr Workbench

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)