-
-
Notifications
You must be signed in to change notification settings - Fork 219
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
support littlefs for upcoming esp8266 arduino core release #173
Comments
Bump? |
Further this thread, StridingDragon has come up with a way to 'trick' PlatformIO into creating/uploading a LittleFS formatted file system for the ESP32 using an extra_script, so hopefully that makes this easier to implement formally, now that it has been live since 2.6.0 of the ESP8266 core. |
SPIFFS is now officially deprecated: |
Joining the party. Not sure even how to declare the LittleFS dependency (not mentioned in https://arduino-esp8266.readthedocs.io/en/latest/filesystem.html#spiffs-and-littlefs). Should be the same for ESP32? |
SPIFFS has been deprecated in the Arduino core v2.7.1
Added in v2.6.0 |
What was the fix here? When I look at configuring options on my project, I do not see the option board_build.filesystem even though I've loaded version 2.6.0 of the Expressif 8266 platform. Does this fix eliminate the need for any additional outside scripts of do I still have to fool around with python to build the .bin file for the filesystem. As far as I can tell, this fix has done nothing for me. I'm using PlatformIO on CLion. Thanks for any help. |
The issue I was having was I had not noticed the Uploadfs target in the PlatformIO build configurations in Clion. Small details get you every time. Once I selected this target, it all worked as described. Thanks for the help. |
Oh, so I guess I ran into the same situation... |
I don't know about VSCode, but in CLion, when you run the UploadFS task with board_build.filesystem = littlefs , platformIO generates a file littlefs.bin under .pio/build/"board"/ directory. Perhaps you need to delete the SPIFFS.bin file that might be there. Try cleaning and rebuilding. This works for me in CLion. Good luck. |
@45gfg9
|
Thanks! |
The next release of Arduino core for esp8266 will have support for more than one filesystem type. This should be supported.
The text was updated successfully, but these errors were encountered: