Default VSCode Debug configuration without Pre-Debug

This commit is contained in:
Ivan Kravets
2018-09-06 16:34:27 +03:00
parent 7108b2fdd4
commit a477e8cb23
2 changed files with 6 additions and 6 deletions

2
docs

Submodule docs updated: 5e6ae4cf29...249e870503

View File

@ -23,21 +23,21 @@
% if svd_path: % if svd_path:
"svdPath": "{{ _escape_path(svd_path) }}", "svdPath": "{{ _escape_path(svd_path) }}",
% end % end
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
},
"internalConsoleOptions": "openOnSessionStart" "internalConsoleOptions": "openOnSessionStart"
}, },
{ {
"type": "platformio-debug", "type": "platformio-debug",
"request": "launch", "request": "launch",
"name": "PIO Debug (Skip Pre-Debug)", "name": "PIO Debug (with Pre-Debug)",
"executable": "{{ _escape_path(prog_path) }}", "executable": "{{ _escape_path(prog_path) }}",
"toolchainBinDir": "{{ _escape_path(dirname(gdb_path)) }}", "toolchainBinDir": "{{ _escape_path(dirname(gdb_path)) }}",
% if svd_path: % if svd_path:
"svdPath": "{{ _escape_path(svd_path) }}", "svdPath": "{{ _escape_path(svd_path) }}",
% end % end
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
},
"internalConsoleOptions": "openOnSessionStart" "internalConsoleOptions": "openOnSessionStart"
} }
] ]