We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c0bd86 commit 99ceccdCopy full SHA for 99ceccd
cores/esp32/Esp.cpp
@@ -240,6 +240,10 @@ String EspClass::getSketchMD5()
240
md5.add(buf.get(), readBytes);
241
lengthLeft -= readBytes;
242
offset += readBytes;
243
+
244
+ #if CONFIG_FREERTOS_UNICORE
245
+ delay(1); // Fix solo WDT
246
+ #endif
247
}
248
md5.calculate();
249
result = md5.toString();
libraries/Update/src/Updater.cpp
@@ -386,6 +386,10 @@ size_t UpdateClass::writeStream(Stream &data) {
386
if((_bufferLen == remaining() || _bufferLen == SPI_FLASH_SEC_SIZE) && !_writeBuffer())
387
return written;
388
written += toRead;
389
390
391
392
393
394
395
0 commit comments