From f5a498ab8d2a42341d0dbeb969b7ae047783e860 Mon Sep 17 00:00:00 2001 From: vintagepc <53943260+vintagepc@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:20:27 -0400 Subject: [PATCH] Add launch/debug targets for Dwarf/ModBed --- .vscode/launch.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) 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",