diff options
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ff89d56 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,22 @@ +{ + // These settings tweaks to the cmake plugin will ensure + // that you debug using cortex-debug instead of trying to launch + // a Pico binary on the host + "cmake.statusbar.advanced": { + "debug": { + "visibility": "hidden" + }, + "launch": { + "visibility": "hidden" + }, + "build": { + "visibility": "hidden" + }, + "buildTarget": { + "visibility": "hidden" + } + }, + "cmake.buildBeforeRun": true, + // This may need to be arm-none-eabi-gdb depending on your system + "cortex-debug.gdbPath": "gdb-multiarch" +}
\ No newline at end of file |