From 858e3fe5ec4ed1de80aec7cae12b6dba5c62ffa5 Mon Sep 17 00:00:00 2001 From: Jan Beran Date: Fri, 19 Jan 2024 10:58:12 +0100 Subject: [PATCH] docs(esp-idf-monitor): Add information about ESP_IDF_MONITOR_NO_RESET --- docs/en/api-guides/tools/idf-monitor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api-guides/tools/idf-monitor.rst b/docs/en/api-guides/tools/idf-monitor.rst index 6971834446..5c4408209d 100644 --- a/docs/en/api-guides/tools/idf-monitor.rst +++ b/docs/en/api-guides/tools/idf-monitor.rst @@ -228,7 +228,7 @@ The ROM ELF file is automatically loaded from a location based on the ``IDF_PATH Target Reset on Connection ~~~~~~~~~~~~~~~~~~~~~~~~~~ -By default, IDF Monitor will reset the target when connecting to it. The reset of the target chip is performed using the DTR and RTS serial lines. To prevent IDF Monitor from automatically resetting the target on connection, call IDF Monitor with the ``--no-reset`` option (e.g., ``idf.py monitor --no-reset``). +By default, IDF Monitor will reset the target when connecting to it. The reset of the target chip is performed using the DTR and RTS serial lines. To prevent IDF Monitor from automatically resetting the target on connection, call IDF Monitor with the ``--no-reset`` option (e.g., ``idf.py monitor --no-reset``). You can also set the environment variable ``ESP_IDF_MONITOR_NO_RESET`` to ``1`` to achieve the same behavior. .. note::