From 995676010e81f13c684d834ca57a2cff4451a63e Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 23 Jun 2020 13:38:54 +0200 Subject: [PATCH] Tools: Mention ESPPORT and ESPBAUD in idf.py --help Closes https://github.com/espressif/esp-idf/issues/5461 --- tools/idf_py_actions/serial_ext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/idf_py_actions/serial_ext.py b/tools/idf_py_actions/serial_ext.py index 37a2e166c..1238742ba 100644 --- a/tools/idf_py_actions/serial_ext.py +++ b/tools/idf_py_actions/serial_ext.py @@ -139,7 +139,7 @@ def action_extensions(base_actions, project_path): baud_rate = { "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", "envvar": "ESPBAUD", "default": 460800, @@ -147,7 +147,7 @@ def action_extensions(base_actions, project_path): port = { "names": ["-p", "--port"], - "help": "Serial port.", + "help": "Serial port. The default value can be set with the ESPPORT environment variable.", "scope": "global", "envvar": "ESPPORT", "default": None,