Revert back "PIO Debug (skip Pre-Debug)" debug configuration for VSCode

This commit is contained in:
Ivan Kravets
2018-09-06 22:21:46 +03:00
parent 4b2a63db1f
commit b7ac59066f
2 changed files with 12 additions and 12 deletions

2
docs

Submodule docs updated: 249e870503...8a149aa19d

View File

@@ -22,23 +22,23 @@
"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
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"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 % end
"preLaunchTask": { "preLaunchTask": {
"type": "PlatformIO", "type": "PlatformIO",
"task": "Pre-Debug" "task": "Pre-Debug"
}, },
"internalConsoleOptions": "openOnSessionStart" "internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "{{ _escape_path(prog_path) }}",
"toolchainBinDir": "{{ _escape_path(dirname(gdb_path)) }}",
% if svd_path:
"svdPath": "{{ _escape_path(svd_path) }}",
% end
"internalConsoleOptions": "openOnSessionStart"
} }
] ]
} }