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

Thank You Your advice the mistake was really in the address.
With the below code section the bootloader get the correct address and works fine.

typedef void (*pFunction)(void);

pFunction Jump_To_Application;
uint32_t JumpAddress;

JumpAddress = *(__IO uint32_t*) (START_ADDR + 4);
Jump_To_Application = (pFunction) JumpAddress;
set_MSP(*(IO uint32_t*) START_ADDR);
Jump_To_Application();

Kind regards,
Szabolcs