CTRL-C, not CTRL-L

This commit is contained in:
proddy
2024-09-19 17:28:30 +02:00
parent 384eb9bd1f
commit 788efb1266

View File

@@ -1709,7 +1709,8 @@ void EMSESP::loop() {
if (c != -1) { if (c != -1) {
show_prompt = true; show_prompt = true;
} }
if (c == '\x03' || c == '\x0C') { // https://daleswanson.org/ascii.htm#:~:text=0
if (c == '\x03') {
start_serial_console(); start_serial_console();
} }
} }