From ab440611a3505b3ff32e80d054ca97839fda4e08 Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 18 Aug 2019 23:13:40 +0200 Subject: [PATCH] remove the 1.5sec ping so now we can scroll the window --- src/MyESP.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MyESP.cpp b/src/MyESP.cpp index 42335021b..2465f4200 100644 --- a/src/MyESP.cpp +++ b/src/MyESP.cpp @@ -583,6 +583,7 @@ void MyESP::_telnet_setup() { SerialAndTelnet.setCallbackOnConnect([this]() { _telnetConnected(); }); SerialAndTelnet.setCallbackOnDisconnect([this]() { _telnetDisconnected(); }); SerialAndTelnet.setDebugOutput(false); + SerialAndTelnet.setPingTime(0); // default is 1500ms (1.5 seconds) SerialAndTelnet.begin(TELNET_SERIAL_BAUD); // default baud is 115200 // init command buffer for console commands