From f3b7f9c431d9ec9262300ec49137a9abc82f394e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ga=C5=88o?= Date: Thu, 10 Mar 2022 15:15:58 +0100 Subject: [PATCH] Add hint for exiting the idf.monitor.py Closes https://github.com/espressif/esp-idf/issues/8508 --- tools/idf_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_monitor.py b/tools/idf_monitor.py index 42e2e04f0b..57d2732a76 100755 --- a/tools/idf_monitor.py +++ b/tools/idf_monitor.py @@ -160,7 +160,7 @@ class Monitor: try: self._main_loop() except KeyboardInterrupt: - yellow_print('To exit from IDF monitor please use \"Ctrl+]\"') + yellow_print('To exit from IDF monitor please use \"Ctrl+]\". Alternatively, you can use Ctrl-T Ctrl-X to exit.') self.serial_write(codecs.encode(CTRL_C)) except SerialStopException: normal_print('Stopping condition has been received\n')