From caba2a9df09bac8321d30887564b8c3e6591cf46 Mon Sep 17 00:00:00 2001 From: proddy Date: Wed, 3 Jun 2020 17:26:13 +0200 Subject: [PATCH] added telnet write timeout --- src/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.cpp b/src/console.cpp index c0c61053f..df5b9b270 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -438,7 +438,7 @@ void Console::start() { // note, this must be started after the network/wifi for ESP32 otherwise it'll crash #ifndef EMSESP_STANDALONE telnet_.start(); - // telnet_.default_write_timeout(1000); // in ms, socket timeout 1 second + telnet_.default_write_timeout(1000); // in ms, socket timeout 1 second #endif }