Skip to content

Commit

Permalink
Add launch/debug targets for Dwarf/ModBed
Browse files Browse the repository at this point in the history
  • Loading branch information
vintagepc authored and danopernis committed Aug 16, 2024
1 parent ebd6381 commit f5a498a
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
"request": "launch",
},
{
"name": "GDB (QEMU)",
"name": "GDB - Buddy (QEMU)",
"type": "gdb",
"request": "attach",
"executable": "${workspaceRoot}/build-vscode-buddy/firmware",
Expand All @@ -258,6 +258,28 @@
"gdbpath": "${workspaceRoot}/.dependencies/gcc-arm-none-eabi-13.2.1/bin/arm-none-eabi-gdb",
"autorun": []
},
{
"name": "GDB - Dwarf (QEMU)",
"type": "gdb",
"request": "attach",
"executable": "${workspaceRoot}/build-vscode-dwarf/firmware",
"target": ":1234",
"remote": true,
"cwd": "${workspaceRoot}",
"gdbpath": "${workspaceRoot}/.dependencies/gcc-arm-none-eabi-13.2.1/bin/arm-none-eabi-gdb",
"autorun": []
},
{
"name": "GDB - ModularBed (QEMU)",
"type": "gdb",
"request": "attach",
"executable": "${workspaceRoot}/build-vscode-modularbed/firmware",
"target": ":1234",
"remote": true,
"cwd": "${workspaceRoot}",
"gdbpath": "${workspaceRoot}/.dependencies/gcc-arm-none-eabi-13.2.1/bin/arm-none-eabi-gdb",
"autorun": []
},
{
"name": "Unit-tests debug",
"type": "gdb",
Expand Down

0 comments on commit f5a498a

Please sign in to comment.