From 6df0b0acd2674f7ef84250df91dff36fcffaa373 Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Tue, 6 Feb 2018 13:15:47 +0100 Subject: [PATCH] launch --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7196b49..59ebbbd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,19 @@ ], "cwd": "${workspaceRoot}" }, + { + "type": "gdb", + "request": "attach", + "name": "serial-echo", + "gdbpath": "/usr/bin/arm-none-eabi-gdb", + "executable": "./target/thumbv7em-none-eabihf/debug/examples/serial-echo", + "target": ":3333", + "remote": true, + "autorun": [ + "load" + ], + "cwd": "${workspaceRoot}" + }, { "type": "gdb", "request": "attach", @@ -43,5 +56,18 @@ ], "cwd": "${workspaceRoot}" }, + { + "type": "gdb", + "request": "attach", + "name": "rtfm-serial-echo", + "gdbpath": "/usr/bin/arm-none-eabi-gdb", + "executable": "./target/thumbv7em-none-eabihf/debug/examples/rtfm-serial-echo", + "target": ":3333", + "remote": true, + "autorun": [ + "load" + ], + "cwd": "${workspaceRoot}" + }, ] } \ No newline at end of file -- GitLab