diff --git a/.vscode/launch.json b/.vscode/launch.json index ac18586851..bfd5c9d478 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -179,7 +179,7 @@ "request": "launch", }, { - "name": "GDB (QEMU)", + "name": "GDB - Buddy (QEMU)", "type": "gdb", "request": "attach", "executable": "${workspaceRoot}/build-vscode-buddy/firmware", @@ -189,6 +189,28 @@ "gdbpath": "${workspaceRoot}/.dependencies/gcc-arm-none-eabi-10.3.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-10.3.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-10.3.1/bin/arm-none-eabi-gdb", + "autorun": [] + }, { "name": "Unit-tests debug", "type": "cppdbg",