Unverified Commit 99ceccdb authored by Jason2866's avatar Jason2866 Committed by GitHub

Backport: Fix ESP32-Solo WDT on HTTP OTA update (#9223)

* Fix ESP32-Solo WDT on HTTP OTA update

* Fix ESP32-Solo WDT on HTTP OTA update
parent 0c0bd86c
...@@ -240,6 +240,10 @@ String EspClass::getSketchMD5() ...@@ -240,6 +240,10 @@ String EspClass::getSketchMD5()
md5.add(buf.get(), readBytes); md5.add(buf.get(), readBytes);
lengthLeft -= readBytes; lengthLeft -= readBytes;
offset += readBytes; offset += readBytes;
#if CONFIG_FREERTOS_UNICORE
delay(1); // Fix solo WDT
#endif
} }
md5.calculate(); md5.calculate();
result = md5.toString(); result = md5.toString();
......
...@@ -386,6 +386,10 @@ size_t UpdateClass::writeStream(Stream &data) { ...@@ -386,6 +386,10 @@ size_t UpdateClass::writeStream(Stream &data) {
if((_bufferLen == remaining() || _bufferLen == SPI_FLASH_SEC_SIZE) && !_writeBuffer()) if((_bufferLen == remaining() || _bufferLen == SPI_FLASH_SEC_SIZE) && !_writeBuffer())
return written; return written;
written += toRead; written += toRead;
#if CONFIG_FREERTOS_UNICORE
delay(1); // Fix solo WDT
#endif
} }
return written; return written;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment