mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Rename "monitor_baud" option to "monitor_speed"
This commit is contained in:
@ -19,6 +19,7 @@ PlatformIO 3.0
|
|||||||
which will be used by `PlatformIO Home <http://docs.platformio.org/page/home/index.html>`_
|
which will be used by `PlatformIO Home <http://docs.platformio.org/page/home/index.html>`_
|
||||||
* Updated Unity tool to 2.4.3
|
* Updated Unity tool to 2.4.3
|
||||||
* Improved support for Black Magic Probe in "uploader" mode
|
* Improved support for Black Magic Probe in "uploader" mode
|
||||||
|
* Renamed "monitor_baud" option to "monitor_speed"
|
||||||
* Fixed issue when a custom `lib_dir <http://docs.platformio.org/page/projectconf/section_platformio.html#lib-dir> `__ was not handled correctly
|
* Fixed issue when a custom `lib_dir <http://docs.platformio.org/page/projectconf/section_platformio.html#lib-dir> `__ was not handled correctly
|
||||||
(`issue #1473 <https://github.com/platformio/platformio-core/issues/1473>`_)
|
(`issue #1473 <https://github.com/platformio/platformio-core/issues/1473>`_)
|
||||||
* Fixed issue with useless project rebuilding for case insensitive file
|
* Fixed issue with useless project rebuilding for case insensitive file
|
||||||
|
2
docs
2
docs
Submodule docs updated: a8f041bd3d...b7168a2b1a
@ -144,14 +144,14 @@ class EnvironmentProcessor(object):
|
|||||||
"debug_init_cmds", "debug_extra_cmds", "debug_server",
|
"debug_init_cmds", "debug_extra_cmds", "debug_server",
|
||||||
"debug_init_break", "debug_load_cmd",
|
"debug_init_break", "debug_load_cmd",
|
||||||
"debug_load_mode", "debug_svd_path", "monitor_port",
|
"debug_load_mode", "debug_svd_path", "monitor_port",
|
||||||
"monitor_baud", "monitor_rts", "monitor_dtr")
|
"monitor_speed", "monitor_rts", "monitor_dtr")
|
||||||
|
|
||||||
IGNORE_BUILD_OPTIONS = ("test_transport", "test_filter", "test_ignore",
|
IGNORE_BUILD_OPTIONS = ("test_transport", "test_filter", "test_ignore",
|
||||||
"test_port", "test_speed", "debug_port",
|
"test_port", "test_speed", "debug_port",
|
||||||
"debug_init_cmds", "debug_extra_cmds",
|
"debug_init_cmds", "debug_extra_cmds",
|
||||||
"debug_server", "debug_init_break",
|
"debug_server", "debug_init_break",
|
||||||
"debug_load_cmd", "debug_load_mode",
|
"debug_load_cmd", "debug_load_mode",
|
||||||
"monitor_port", "monitor_baud", "monitor_rts",
|
"monitor_port", "monitor_speed", "monitor_rts",
|
||||||
"monitor_dtr")
|
"monitor_dtr")
|
||||||
|
|
||||||
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}
|
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}
|
||||||
@ -159,7 +159,8 @@ class EnvironmentProcessor(object):
|
|||||||
RENAMED_OPTIONS = {
|
RENAMED_OPTIONS = {
|
||||||
"lib_use": "lib_deps",
|
"lib_use": "lib_deps",
|
||||||
"lib_force": "lib_deps",
|
"lib_force": "lib_deps",
|
||||||
"extra_script": "extra_scripts"
|
"extra_script": "extra_scripts",
|
||||||
|
"monitor_baud": "monitor_speed"
|
||||||
}
|
}
|
||||||
|
|
||||||
RENAMED_PLATFORMS = {"espressif": "espressif8266"}
|
RENAMED_PLATFORMS = {"espressif": "espressif8266"}
|
||||||
|
Reference in New Issue
Block a user