Open
Description
Feature Request
To debug an embedded target using a SEGGER J-Link I followed #9956.
Debugging works fine. But the restart button does just stop the debugging.
Currently I'm using cortex-debug and there it is possible to overwrite commands as described here.
...
"overrideLaunchCommands": [
"monitor halt",
"monitor reset",
"-target-download",
"monitor reset"
],
"overrideResetCommands": [
"monitor reset",
],
"overrideRestartCommands": [
"monitor reset",
]
...
Which then allows to restart the debugging with the built-in buttons.
Is there a similar thing already present? Or could this be added in the future?