cdt-gdb-vscode
cdt-gdb-vscode copied to clipboard
Add device reset
Adds:
Custom Reset (configured via launch.json). Issue: https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/36
Testing:
Required: https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/365 In a target project, launch.json, add this. The command uses pyOCD but can be any other.
"configurations": [
{
"name": "pyOCD cdt-gdb-adapter",
...
"customResetCommands": [
"monitor reset halt hardware",
],
},
We do have some lightweight documentation in the README.md. Could you please add the new setting there, too?
Waiting with merge until complementary adapter change is merged and released.