Skip to content
Snippets Groups Projects
Unverified Commit f5ef98ef authored by CNLohr's avatar CNLohr Committed by GitHub
Browse files

Merge pull request #96 from AlpyneDreams/master

Fix restarting vscode debugger
parents acc58861 8d0c619d
No related branches found
No related tags found
No related merge requests found
......@@ -10,14 +10,20 @@
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"preLaunchTask": "run_flash_and_gdbserver",
"MIMode": "gdb",
"deploySteps": [
{
"type": "shell",
"continueOn": "GDBServer",
"command": "make --directory=${workspaceFolder} closechlink flash gdbserver"
},
],
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"miDebuggerPath": "gdb-multiarch",
"miDebuggerServerAddress": "127.0.0.1:2000"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment