From a4a8782c5611c02df3c0dd4744c86d02a4f037d3 Mon Sep 17 00:00:00 2001 From: DarioGHub <49622669+DarioGHub@users.noreply.github.com> Date: Sun, 11 Dec 2022 11:10:56 -0600 Subject: [PATCH] Correct class name in readme.rst (#8751) Text referred to an object name ESPHTTPUpdate, but context called for class name ESP8266HTTPUpdate --- doc/ota_updates/readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ota_updates/readme.rst b/doc/ota_updates/readme.rst index 6fe2a06935..a2dcd4d8cc 100755 --- a/doc/ota_updates/readme.rst +++ b/doc/ota_updates/readme.rst @@ -501,7 +501,7 @@ In case OTA update fails dead after entering modifications in your sketch, you c HTTP Server ----------- -``ESPhttpUpdate`` class can check for updates and download a binary file from HTTP web server. It is possible to download updates from every IP or domain address on the network or Internet. +``ESP8266HTTPUpdate`` class can check for updates and download a binary file from HTTP web server. It is possible to download updates from every IP or domain address on the network or Internet. Note that by default this class closes all other connections except the one used by the update, this is because the update method blocks. This means that if there's another application receiving data then TCP packets will build up in the buffer leading to out of memory errors causing the OTA update to fail. There's also a limited number of receive buffers available and all may be used up by other applications.