mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 08:55:22 +01:00
Hotfix for ESP8266 OTA issue: ERROR Error binary size (#2432)
Co-authored-by: Maurice Makaay <mmakaay1@xs4all.net>
This commit is contained in:
parent
912793eddf
commit
cee08debff
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@ OTAResponseTypes ArduinoESP8266OTABackend::begin(size_t image_size) {
|
||||||
bool ret = Update.begin(image_size, U_FLASH);
|
bool ret = Update.begin(image_size, U_FLASH);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
esp8266::preferences_prevent_write(true);
|
esp8266::preferences_prevent_write(true);
|
||||||
|
return OTA_RESPONSE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t error = Update.getError();
|
uint8_t error = Update.getError();
|
||||||
|
|
Loading…
Reference in a new issue