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


You are viewing a reply to Converting to C++  

Converting to C++

In fact, not only you should correct the linker script specification (use a relative path, like ..\STM32F746NGHx_FLASH.ld rather than an absolute one), but you also must add linker flags -specs=nosys.specs -specs=nano.specs in C/C++ Build >> Settings >> MCU G++ Linker >> Miscellaneous

Then the project should compile correctly.

These are glitches in C to C++ conversion that will be corrected in a future release.

Bernard