diff --git a/docs b/docs index 5e6ae4cf..249e8705 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 5e6ae4cf29539032a01282025a51afa5468b5633 +Subproject commit 249e8705033fced1d028c30d6b312998dbae9c1a diff --git a/platformio/ide/tpls/vscode/.vscode/launch.json.tpl b/platformio/ide/tpls/vscode/.vscode/launch.json.tpl index a69d5017..5c485773 100644 --- a/platformio/ide/tpls/vscode/.vscode/launch.json.tpl +++ b/platformio/ide/tpls/vscode/.vscode/launch.json.tpl @@ -23,21 +23,21 @@ % if svd_path: "svdPath": "{{ _escape_path(svd_path) }}", % end - "preLaunchTask": { - "type": "PlatformIO", - "task": "Pre-Debug" - }, "internalConsoleOptions": "openOnSessionStart" }, { "type": "platformio-debug", "request": "launch", - "name": "PIO Debug (Skip Pre-Debug)", + "name": "PIO Debug (with Pre-Debug)", "executable": "{{ _escape_path(prog_path) }}", "toolchainBinDir": "{{ _escape_path(dirname(gdb_path)) }}", % if svd_path: "svdPath": "{{ _escape_path(svd_path) }}", % end + "preLaunchTask": { + "type": "PlatformIO", + "task": "Pre-Debug" + }, "internalConsoleOptions": "openOnSessionStart" } ]