File tree 4 files changed +7
-11
lines changed
4 files changed +7
-11
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,11 +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
93
libraries/SD_MMC/src/SD_MMC.cpp
99
94
libraries/SD/src/SD.cpp
100
95
libraries/SD/src/sd_diskio.cpp
@@ -184,7 +179,6 @@ set(includedirs
184
179
libraries/I2S/src
185
180
libraries/NetBIOS/src
186
181
libraries/Preferences/src
187
- libraries/RainMaker/src
188
182
libraries/SD_MMC/src
189
183
libraries/SD/src
190
184
libraries/SimpleBLE/src
@@ -239,10 +233,6 @@ endfunction()
239
233
240
234
maybe_add_component(esp-dsp)
241
235
242
- if (CONFIG_ESP_RMAKER_WORK_QUEUE_TASK_STACK)
243
- maybe_add_component(esp_rainmaker)
244
- maybe_add_component(qrcode)
245
- endif ()
246
236
if (IDF_TARGET MATCHES "esp32s2|esp32s3" AND CONFIG_TINYUSB_ENABLED)
247
237
maybe_add_component(arduino_tinyusb)
248
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