File tree 4 files changed +7
-13
lines changed
4 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [ ! -d "$ARDUINO_ESP32_PATH" ]; then
20
20
ln -s $GITHUB_WORKSPACE esp32
21
21
else
22
22
echo " Cloning Core Repository..."
23
- git clone https://github.com/espressif /arduino-esp32.git esp32 > /dev/null 2>&1
23
+ git clone https://github.com/tasmota /arduino-esp32.git esp32 > /dev/null 2>&1
24
24
fi
25
25
26
26
# echo "Updating Submodules ..."
Original file line number Diff line number Diff line change @@ -90,13 +90,6 @@ set(LIBRARY_SRCS
90
90
libraries/I2S/src/I2S.cpp
91
91
libraries/NetBIOS/src/NetBIOS.cpp
92
92
libraries/Preferences/src/Preferences.cpp
93
- libraries/RainMaker/src/RMaker.cpp
94
- libraries/RainMaker/src/RMakerNode.cpp
95
- libraries/RainMaker/src/RMakerParam.cpp
96
- libraries/RainMaker/src/RMakerDevice.cpp
97
- libraries/RainMaker/src/RMakerType.cpp
98
- libraries/RainMaker/src/RMakerQR.cpp
99
- libraries/RainMaker/src/RMakerUtils.cpp
100
93
libraries/SD_MMC/src/SD_MMC.cpp
101
94
libraries/SD/src/SD.cpp
102
95
libraries/SD/src/sd_diskio.cpp
@@ -186,7 +179,6 @@ set(includedirs
186
179
libraries/I2S/src
187
180
libraries/NetBIOS/src
188
181
libraries/Preferences/src
189
- libraries/RainMaker/src
190
182
libraries/SD_MMC/src
191
183
libraries/SD/src
192
184
libraries/SimpleBLE/src
@@ -241,10 +233,6 @@ endfunction()
241
233
242
234
maybe_add_component(esp-dsp)
243
235
244
- if (CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK)
245
- maybe_add_component(esp_rainmaker)
246
- maybe_add_component(qrcode)
247
- endif ()
248
236
if (IDF_TARGET MATCHES "esp32s2|esp32s3" AND CONFIG_TINYUSB_ENABLED)
249
237
maybe_add_component(arduino_tinyusb)
250
238
endif ()
Original file line number Diff line number Diff line change @@ -231,6 +231,10 @@ String EspClass::getSketchMD5()
231
231
md5.add (buf.get (), readBytes);
232
232
lengthLeft -= readBytes;
233
233
offset += readBytes;
234
+
235
+ #if CONFIG_FREERTOS_UNICORE
236
+ delay (1 ); // Fix solo WDT
237
+ #endif
234
238
}
235
239
md5.calculate ();
236
240
result = md5.toString ();
Original file line number Diff line number Diff line change @@ -377,6 +377,8 @@ size_t UpdateClass::writeStream(Stream &data) {
377
377
if ((_bufferLen == remaining () || _bufferLen == SPI_FLASH_SEC_SIZE) && !_writeBuffer ())
378
378
return written;
379
379
written += toRead;
380
+
381
+ delay (1 ); // Fix solo WDT
380
382
}
381
383
return written;
382
384
}
You can’t perform that action at this time.
0 commit comments