forked from platformio/platformio-core
New UI for PIO Unified Debugger and VSCode
This commit is contained in:
2
docs
2
docs
Submodule docs updated: 92493e4cc2...6f9634bb82
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
// PIO Unified Debugger
|
// PIO Unified Debugger
|
||||||
//
|
//
|
||||||
// http://docs.platformio.org/page/plus/debugging.html
|
// Documentation: http://docs.platformio.org/page/plus/debugging.html
|
||||||
// http://docs.platformio.org/page/section_env_debug.html#projectconf-debug-tool
|
// Configuration: http://docs.platformio.org/page/projectconf/section_env_debug.html
|
||||||
|
|
||||||
% from os.path import dirname, join
|
% from os.path import dirname, join
|
||||||
%
|
%
|
||||||
@ -14,21 +14,10 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
|
||||||
"type": "gdb",
|
|
||||||
"request": "launch",
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"name": "PlatformIO Debugger",
|
|
||||||
"target": "{{ _escape_path(prog_path) }}",
|
|
||||||
"gdbpath": "{{ _escape_path(join(dirname(platformio_path), "piodebuggdb")) }}",
|
|
||||||
"autorun": [ "source .pioinit" ],
|
|
||||||
"preLaunchTask": "PlatformIO: Pre-Debug",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "platformio-debug",
|
"type": "platformio-debug",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "PlatformIO Debugger (Dev)",
|
"name": "PlatformIO Debugger",
|
||||||
"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:
|
||||||
@ -40,7 +29,7 @@
|
|||||||
{
|
{
|
||||||
"type": "platformio-debug",
|
"type": "platformio-debug",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "PlatformIO Debugger (Dev) (Quick)",
|
"name": "PlatformIO Debugger (Skip 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:
|
||||||
|
@ -23,7 +23,7 @@ from platformio.managers.package import PackageManager
|
|||||||
CORE_PACKAGES = {
|
CORE_PACKAGES = {
|
||||||
"contrib-piohome": ">=0.9.5,<2",
|
"contrib-piohome": ">=0.9.5,<2",
|
||||||
"contrib-pysite": ">=0.2.0,<2",
|
"contrib-pysite": ">=0.2.0,<2",
|
||||||
"tool-pioplus": ">=1.2.1,<2",
|
"tool-pioplus": ">=1.3.0,<2",
|
||||||
"tool-unity": "~1.20403.0",
|
"tool-unity": "~1.20403.0",
|
||||||
"tool-scons": "~2.20501.4"
|
"tool-scons": "~2.20501.4"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user