-
Notifications
You must be signed in to change notification settings - Fork 102
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
Best way to gain flash memory #50
Comments
For the main branch I intend to keep things as they are for now, but of course you can create your version with only the features you need. I can put "add #ifdefs to customize which features are included" on my TODO list, but not with high priority.... Probably you can remove those features with little effort:
You can also change the flash layout to get more flash space. Currently it is OTA-enabled (basically this means that it uses twice the space, so you can run on version of the software and upload a newer image while the software is running, and then boot the new image). Never done this myself, so you'll have to google for how to do it. Something like this: espressif/arduino-esp32#703, just remove "app1" and make "app0" twice as big. |
Thank you very much for your help. I'll give it a go and see how far I get. |
Thank you. I think I managed to use #ifdefs for RS92 and MQTT so now I managed to mount the SDCard successfully |
Can you share your version with SD Card support? |
While I could mount the SD Card, I ran into issues with the coexistence of SPIFFS and SDCARD filesystems so I abandoned it. Probably the way to go would be to use only SDCard instead of SPIFFS but I didn't get around to that yet. |
I would like to try and write the output that you get in the Data screen on the web interface to SDcard for when I'm outside with only the tracker.
I want to implement the SD_MMC library but it's already exceeding the available flash.
Is it possible to comment out some code, ie. fonts or display drivers that are not used to free up some flash memory?
Thank you.
The text was updated successfully, but these errors were encountered: