From: Angus Gratton Date: Thu, 5 Apr 2018 07:32:22 +0000 (+1000) Subject: esptool: Add note that ESPTOOLPY_PORT & ESPTOOLPY_BAUD are ignored when using idf.py X-Git-Tag: v3.1-rc2~9^2~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a2f1f03549294c08eb1f320b21f9e6febdb75e6;p=esp-idf esptool: Add note that ESPTOOLPY_PORT & ESPTOOLPY_BAUD are ignored when using idf.py --- diff --git a/components/esptool_py/Kconfig.projbuild b/components/esptool_py/Kconfig.projbuild index 84ca5d6831..c87d8adcf1 100644 --- a/components/esptool_py/Kconfig.projbuild +++ b/components/esptool_py/Kconfig.projbuild @@ -4,15 +4,19 @@ config ESPTOOLPY_PORT string "Default serial port" default "/dev/ttyUSB0" help - The serial port that's connected to the ESP chip. This can be overridden by setting the ESPPORT - environment variable. + The serial port that's connected to the ESP chip. This can be overridden by setting the ESPPORT + environment variable. + + This value is ignored when using the CMake-based build system or idf.py. choice ESPTOOLPY_BAUD - prompt "Default baud rate" - default ESPTOOLPY_BAUD_115200B - help - Default baud rate to use while communicating with the ESP chip. Can be overridden by - setting the ESPBAUD variable. + prompt "Default baud rate" + default ESPTOOLPY_BAUD_115200B + help + Default baud rate to use while communicating with the ESP chip. Can be overridden by + setting the ESPBAUD variable. + + This value is ignored when using the CMake-based build system or idf.py. config ESPTOOLPY_BAUD_115200B bool "115200 baud"