Rename "monitor_baud" option to "monitor_speed"

This commit is contained in:
Ivan Kravets
2018-05-14 18:53:16 -07:00
parent ba352454ed
commit 29064b6c63
3 changed files with 6 additions and 4 deletions

View File

@ -19,6 +19,7 @@ PlatformIO 3.0
which will be used by `PlatformIO Home <http://docs.platformio.org/page/home/index.html>`_
* Updated Unity tool to 2.4.3
* 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
(`issue #1473 <https://github.com/platformio/platformio-core/issues/1473>`_)
* Fixed issue with useless project rebuilding for case insensitive file

2
docs

Submodule docs updated: a8f041bd3d...b7168a2b1a

View File

@ -144,14 +144,14 @@ class EnvironmentProcessor(object):
"debug_init_cmds", "debug_extra_cmds", "debug_server",
"debug_init_break", "debug_load_cmd",
"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",
"test_port", "test_speed", "debug_port",
"debug_init_cmds", "debug_extra_cmds",
"debug_server", "debug_init_break",
"debug_load_cmd", "debug_load_mode",
"monitor_port", "monitor_baud", "monitor_rts",
"monitor_port", "monitor_speed", "monitor_rts",
"monitor_dtr")
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}
@ -159,7 +159,8 @@ class EnvironmentProcessor(object):
RENAMED_OPTIONS = {
"lib_use": "lib_deps",
"lib_force": "lib_deps",
"extra_script": "extra_scripts"
"extra_script": "extra_scripts",
"monitor_baud": "monitor_speed"
}
RENAMED_PLATFORMS = {"espressif": "espressif8266"}