From f00e9e58caed37eaa6273689489fa8f21671bffa Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Thu, 20 May 2021 07:20:00 +0100 Subject: [PATCH] add chicken debugger launch.json --- agb/.vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 agb/.vscode/launch.json diff --git a/agb/.vscode/launch.json b/agb/.vscode/launch.json new file mode 100644 index 00000000..014e67ff --- /dev/null +++ b/agb/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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": "Attach to gdbserver", + "executable": "target/thumbv4t-none-eabi/debug/examples/chicken", + "target": "127.0.0.1:2345", + "remote": true, + "cwd": "${workspaceRoot}", + "gdbpath": "arm-none-eabi-gdb", + } + ] +} \ No newline at end of file