mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-28 19:34:59 +00:00
b8937e5522
https://github.com/espressif/esp-idf/commit/51e42d8e925a20011bb7105da8cc3194d6940a6f introduced filtering options which handles the last (unterminated) line with a delay. This introduced poor performance for console applications when the user interacts with the ESP32 device in the same line because there is an artificial delay for each key-press. https://github.com/espressif/esp-idf/commit/bb152030a0057c5a9a048782f917c4fa9d7b770e decreased the delay but there are still delays for each key-presses. The current fix makes only one delay per line instead of each key-presses. When an unterminated line is detected then no more "delayed" print is used for the given line. Fixes https://github.com/espressif/esp-idf/issues/2054