From 466998d48704264321b43d68d0401d551acbc272 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 29 Apr 2020 23:46:58 +0200 Subject: [PATCH] examples/console: add note about Ctrl+C --- examples/system/console/main/console_example_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/system/console/main/console_example_main.c b/examples/system/console/main/console_example_main.c index db062a263a..2fb295d0de 100644 --- a/examples/system/console/main/console_example_main.c +++ b/examples/system/console/main/console_example_main.c @@ -150,7 +150,8 @@ void app_main(void) "This is an example of ESP-IDF console component.\n" "Type 'help' to get the list of commands.\n" "Use UP/DOWN arrows to navigate through command history.\n" - "Press TAB when typing command name to auto-complete.\n"); + "Press TAB when typing command name to auto-complete.\n" + "Press Enter or Ctrl+C will terminate the console environment.\n"); /* Figure out if the terminal supports escape sequences */ int probe_status = linenoiseProbe();