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


Error Inserting Breakpoint 1

Hi up until recently, I had no problem in debugging my code
However, now, the program downloads successfully to my STM32F745 micro controller and then stops.
A window appears saying:
Error in final launch sequence.
And then when looking for the details, it says a couple of times Error inserting Breakpoint 1. It also then says that there might be too many breakpoints set.

However, I have looked everywhere, and there is no breakpoints set in the program that I can see.

How can I erase all breakpoints and start from scratch? I have a feeling the debugger got tripped up somehow...

Hi morj,

Did you look in the breakpoints view in the Debug perspective? This view lists all the breakpoints set.

Also, when you close your workbench, breakpoints are stored in markers files for each project in the workspace:
$(workspace_dir)/.metadata/.plugins/org.eclipse.core.resources/.projects/$(project_name)/.markers
You can try to remove the markers files when your workbench is closed in case of (I admit it is a dirty solution).

Hope this helps
BR,
Elliot