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


How to properly convert c ++ project?

Hi,

The “Convert to C++” feature is not fully complete yet. The linker options are not persistent between C and C++.
You have to manually change the following values in Properties > C/C++ Build > Settings > MCU G++ Linker :

In General > Linker Script, change the ld script into the one in your project root directory (the name pattern should be ../STM32FXXXXx_FLASH.ld)
In Miscellanous > Linker Flags, add -specs=nosys.specs -specs=nano.specs

The problem has been reported and these options will be automically changed in the next release.

Hope it works
Kevin.