You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thanks a lot for your code and contribution! - Just a little comment from my side, when compile for ESP8266 board there is an error due to a difference between updater.h and update.h, "'U_SPIFFS' was not declared in this scope". Possibly the only change it needs is the segregation bewteen U_FS and U_SPIFFS: #ifdef ESP8266 int cmd = (filename.indexOf("spiffs") > -1) ? U_FS : U_FLASH; #else int cmd = (filename.indexOf("spiffs") > -1) ? U_SPIFFS : U_FLASH; #endif
The text was updated successfully, but these errors were encountered:
Hi,
Thanks a lot for your code and contribution! - Just a little comment from my side, when compile for ESP8266 board there is an error due to a difference between updater.h and update.h, "'U_SPIFFS' was not declared in this scope". Possibly the only change it needs is the segregation bewteen U_FS and U_SPIFFS:
#ifdef ESP8266 int cmd = (filename.indexOf("spiffs") > -1) ? U_FS : U_FLASH; #else int cmd = (filename.indexOf("spiffs") > -1) ? U_SPIFFS : U_FLASH; #endif
The text was updated successfully, but these errors were encountered: