mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Custom debugging configuration
This commit is contained in:
@ -63,10 +63,10 @@ PlatformIO 3.0
|
|||||||
|
|
||||||
* Development platform `Espressif 32 <https://github.com/platformio/platform-espressif32>`__
|
* Development platform `Espressif 32 <https://github.com/platformio/platform-espressif32>`__
|
||||||
|
|
||||||
|
+ New boards: Adafruit Feather, FireBeetle-ESP32, IntoRobot Fig, NodeMCU-32S, Onehorse ESP32 Dev Module, and Widora AIR
|
||||||
+ Added support for OTA (Over-The-Air) updates
|
+ Added support for OTA (Over-The-Air) updates
|
||||||
+ Added support for FireBeetle-ESP32 and IntoRobot Fig
|
+ Updated ESP-IDF framework to v2.0
|
||||||
+ Update ESP-IDF framework to v2.0
|
+ Updated core for Arduino framework
|
||||||
+ Update core for Arduino framework
|
|
||||||
|
|
||||||
* Development platform `Freescale Kinetis <https://github.com/platformio/platform-freescalekinetis>`__
|
* Development platform `Freescale Kinetis <https://github.com/platformio/platform-freescalekinetis>`__
|
||||||
|
|
||||||
|
2
docs
2
docs
Submodule docs updated: fcd6682c9f...2632e42e8a
@ -122,18 +122,19 @@ def cli(ctx, environment, target, upload_port, project_dir, silent, verbose,
|
|||||||
|
|
||||||
class EnvironmentProcessor(object):
|
class EnvironmentProcessor(object):
|
||||||
|
|
||||||
KNOWN_OPTIONS = ("platform", "framework", "board", "board_mcu",
|
KNOWN_OPTIONS = (
|
||||||
"board_f_cpu", "board_f_flash", "board_flash_mode",
|
"platform", "framework", "board", "board_mcu", "board_f_cpu",
|
||||||
"build_flags", "src_build_flags", "build_unflags",
|
"board_f_flash", "board_flash_mode", "build_flags", "src_build_flags",
|
||||||
"src_filter", "extra_script", "targets", "upload_port",
|
"build_unflags", "src_filter", "extra_script", "targets",
|
||||||
"upload_protocol", "upload_speed", "upload_flags",
|
"upload_port", "upload_protocol", "upload_speed", "upload_flags",
|
||||||
"upload_resetmethod", "lib_deps", "lib_ignore",
|
"upload_resetmethod", "lib_deps", "lib_ignore", "lib_extra_dirs",
|
||||||
"lib_extra_dirs", "lib_ldf_mode", "lib_compat_mode",
|
"lib_ldf_mode", "lib_compat_mode", "piotest", "test_ignore",
|
||||||
"piotest", "test_ignore", "test_port", "debug_tool",
|
"test_port", "debug_tool", "debug_port", "debug_init_cmds",
|
||||||
"debug_port", "debug_init_cmds", "debug_extra_cmds")
|
"debug_extra_cmds", "debug_server", "debug_init_break")
|
||||||
|
|
||||||
IGNORE_BUILD_OPTIONS = ("debug_tool", "debug_port", "debug_init_cmds",
|
IGNORE_BUILD_OPTIONS = ("debug_tool", "debug_port", "debug_init_cmds",
|
||||||
"debug_extra_cmds")
|
"debug_extra_cmds", "debug_server",
|
||||||
|
"debug_init_break")
|
||||||
|
|
||||||
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}
|
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ from platformio.managers.package import PackageManager
|
|||||||
|
|
||||||
CORE_PACKAGES = {
|
CORE_PACKAGES = {
|
||||||
"pysite-pioplus": ">=0.3.0,<2",
|
"pysite-pioplus": ">=0.3.0,<2",
|
||||||
"tool-pioplus": ">=0.8.10,<2",
|
"tool-pioplus": ">=0.8.11,<2",
|
||||||
"tool-unity": "~1.20302.1",
|
"tool-unity": "~1.20302.1",
|
||||||
"tool-scons": "~3.20501.2"
|
"tool-scons": "~3.20501.2"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user