-
Notifications
You must be signed in to change notification settings - Fork 13.3k
512k (no SPIFFS) breaks OTAs #966
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks, well noted. |
They are possible - I got them working. But I don't think the program can be very big :) (Is there a particular ESP module with a bigger flash that you would recommend?) |
yes, it's works with 512k module, for eg sketch ArduinoOTA->OTALeds (~277k) |
New ESP-01 modules come with bigger flash, because AT firmware doesn't fit into 512k any more. |
OTAs in Updater.cpp are broken with _SPIFFS_start = 0. The following seems to fix them:
-PROVIDE ( _SPIFFS_start = 0 );
-PROVIDE ( _SPIFFS_end = 0 );
+PROVIDE ( _SPIFFS_start = 0x4027B000 );
+PROVIDE ( _SPIFFS_end = 0x4027B000 );
The text was updated successfully, but these errors were encountered: