Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-10-06 16:11:16 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-10-06 16:11:16 +0300
commite0dc5ae4cfb8e366a4a25153cd842a057888dc0c (patch)
treeb4bab8a27d843c5a55d1cf5ef2963885ac09e3f1
parent17b7c6e5d603fde46500545fa3025d7ad0275fb0 (diff)
parent15225e47b827c0752d35e4abef7cd751f8941217 (diff)
Merge branch '3.4-dev' into 3.5-dev
-rw-r--r--src/Networking/ESP8266WiFi/WiFiInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Networking/ESP8266WiFi/WiFiInterface.cpp b/src/Networking/ESP8266WiFi/WiFiInterface.cpp
index d6554ec4..e5f4b2b4 100644
--- a/src/Networking/ESP8266WiFi/WiFiInterface.cpp
+++ b/src/Networking/ESP8266WiFi/WiFiInterface.cpp
@@ -88,7 +88,7 @@ constexpr IRQn ESP_SPI_IRQn = WiFiSpiSercomIRQn;
#endif
const uint32_t WiFiSlowResponseTimeoutMillis = 500; // SPI timeout when when the ESP has to access the SPIFFS filesytem; highest measured is 234ms.
-const uint32_t WiFiFastResponseTimeoutMillis = 20; // SPI timeout when when the ESP does not have to access SPIFFS filesystem.
+const uint32_t WiFiFastResponseTimeoutMillis = 100; // SPI timeout when when the ESP does not have to access SPIFFS filesystem. 20ms is too short on Duet 2 with both FTP and Telnet enabled.
const uint32_t WiFiWaitReadyMillis = 100;
const uint32_t WiFiStartupMillis = 15000; // Formatting the SPIFFS partition can take up to 10s.
const uint32_t WiFiStableMillis = 100;