mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 19:54:32 +02:00
Merge branch 'bugfix/idf_py_help_env_var' into 'master'
Tools: Mention ESPPORT and ESPBAUD in idf.py --help Closes IDFGH-3506 See merge request espressif/esp-idf!9287
This commit is contained in:
@@ -139,7 +139,7 @@ def action_extensions(base_actions, project_path):
|
|||||||
|
|
||||||
baud_rate = {
|
baud_rate = {
|
||||||
"names": ["-b", "--baud"],
|
"names": ["-b", "--baud"],
|
||||||
"help": "Baud rate for flashing.",
|
"help": "Baud rate for flashing. The default value can be set with the ESPBAUD environment variable.",
|
||||||
"scope": "global",
|
"scope": "global",
|
||||||
"envvar": "ESPBAUD",
|
"envvar": "ESPBAUD",
|
||||||
"default": 460800,
|
"default": 460800,
|
||||||
@@ -147,7 +147,7 @@ def action_extensions(base_actions, project_path):
|
|||||||
|
|
||||||
port = {
|
port = {
|
||||||
"names": ["-p", "--port"],
|
"names": ["-p", "--port"],
|
||||||
"help": "Serial port.",
|
"help": "Serial port. The default value can be set with the ESPPORT environment variable.",
|
||||||
"scope": "global",
|
"scope": "global",
|
||||||
"envvar": "ESPPORT",
|
"envvar": "ESPPORT",
|
||||||
"default": None,
|
"default": None,
|
||||||
|
Reference in New Issue
Block a user