mshoe007 convinced me... should fix #8

This commit is contained in:
Scott Baker 2020-04-29 16:22:52 -07:00
parent 323ccbead5
commit 59033c620e

View File

@ -202,7 +202,8 @@ int WebOTA::add_http_routes(WebServer *server, const char *path) {
// If the MCU is in a delay() it cannot respond to HTTP OTA requests
// We do a "fake" looping delay and listen for incoming HTTP requests while waiting
void WebOTA::delay(unsigned int ms) {
unsigned int last = millis();
// Borrowed from mshoe007 @ https://github.com/scottchiefbaker/ESP-WebOTA/issues/8
decltype(millis()) last;
while ((millis() - last) < ms) {
OTAServer.handleClient();