diff --git a/.vscode/launch.json b/.vscode/launch.json index 7196b4910df0e988b37b61a5c049d921e8ca5bdb..59ebbbd4ad003064d0d1b9ffb69ce4098e76ab45 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