From 3b9d4134be5ff6e5125d9cc88bb0c3f2145837eb Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Mon, 5 Feb 2018 14:25:53 +0100 Subject: [PATCH] vscode --- .vscode/launch.json | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7196b49 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,47 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "gdb", + "request": "attach", + "name": "hello_debug", + "gdbpath": "/usr/bin/arm-none-eabi-gdb", + "executable": "./target/thumbv7em-none-eabihf/debug/examples/hello_debug", + "target": ":3333", + "remote": true, + "autorun": [ + "load", + ], + "cwd": "${workspaceRoot}" + }, + { + "type": "gdb", + "request": "attach", + "name": "rtfm-blinky-systic", + "gdbpath": "/usr/bin/arm-none-eabi-gdb", + "executable": "./target/thumbv7em-none-eabihf/debug/examples/rtfm-blinky-systic", + "target": ":3333", + "remote": true, + "autorun": [ + "load" + ], + "cwd": "${workspaceRoot}" + }, + { + "type": "gdb", + "request": "attach", + "name": "rtfm-blinky-tim2", + "gdbpath": "/usr/bin/arm-none-eabi-gdb", + "executable": "./target/thumbv7em-none-eabihf/debug/examples/rtfm-blinky-tim2", + "target": ":3333", + "remote": true, + "autorun": [ + "load" + ], + "cwd": "${workspaceRoot}" + }, + ] +} \ No newline at end of file -- GitLab