diff --git a/.vscode/launch.json b/.vscode/launch.json index 67f1aad92b..c33ceb5cc6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -248,7 +248,7 @@ "request": "launch", }, { - "name": "GDB (QEMU)", + "name": "GDB - Buddy (QEMU)", "type": "gdb", "request": "attach", "executable": "${workspaceRoot}/build-vscode-buddy/firmware", @@ -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",