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


Could not determine GDB version using command:

Hopefully this is still useful for you or someone else:

I have had the same issue and I just switched from the workbenchs arm-none-eabi-gdb to the one, that is installed on my Arch Linux system.
The one of my System: /usr/bin/arm-none-eabi-gdb (I’ve got that info with this command “which arm-none-eabi-gdb”)

So i went in workbench into: Run->Debug Configurations->Debugger
There I’ve changed the GDB command from “${openstm32_compiler_path}/arm-none-eabi-gdb” to “/usr/bin/arm-none-eabi-gdb”

Then the Debugging began to work.

I hope answering to this “old” thread does not violate any rule here.