-
Notifications
You must be signed in to change notification settings - Fork 238
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
ESP32 Spiffs Filesystem Size #163
Comments
I think you are referring to The partitions are configurable because it is nearly impossible to get two people to agree on the what they should be. ;)
In general, we make the factory partition as big as we can because it is where the developer's application lives. That's usually the biggest thing. If you are indeed referring to the File example, it makes sense to increase the SPIFFS partition there to give developers more space to explore with that example.
Rearrange and resize the partitions as you like for your project. The Moddable SDK adds no additional constraints to the partitions beyond those imposed by the ESP32 IDF. |
Thanks for answering - yes I was talking about the spiffs example. I'll make the factory app smaller then. I though that there might be somewhere else to update to tell the build system what the maximum size of the firmware can be. |
As far as we've seen, updating the partitions.csv is enough. The IDF build system manages to propagate that all the way through. |
The example
partitions.csv
for the ESP32 has spiffs with a size of 60K.I would like to increase this considerably ( At least 256K ).
As this is defined as the last partition there is not the space to simply increase,
Without knowing future plans - is there any reason the factory app is so large?
If is reduced in the partition table there must be somewhere else that needs to be updated to specify the available code space or is this ready from the partition table?
Can the spiffs be moved after factory without side effects?
Thanks!
The text was updated successfully, but these errors were encountered: