2022-04-15 12:49 AM
I wonder whether STM32CubeIDE allows for entering a command like
b start
set a breakpoint at "start". Sometimes it is tedious to scroll through the source to find the symbol or location to set the breakpoint. I admit this is easier in high level langiages like C but in my case it is assembly code.
(Maybe through a port gdb is listening to? But then again it would be a command bypassing the IDE)
2022-04-15 07:19 AM
You can use the Debugger Console window. It may not be immediately obvious that you can type commands in that window, but you can.
2022-04-15 10:50 AM
Thanks! Great to know :)