mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Default VSCode Debug configuration without Pre-Debug
This commit is contained in:
2
docs
2
docs
Submodule docs updated: 5e6ae4cf29...249e870503
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user