-
Notifications
You must be signed in to change notification settings - Fork 68
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
LITTLEFSimpl::exists() bug with Platformio (ESP32 arduino framework) in Visual Studio Code #43
Comments
@tonyrewin - thanks for your bugfix. When will this gets released? |
Screw it. I am going to submit a fix today if possible. |
For some reason, I can't get the PR I created to show up here. If someone could help teach me how to do that or why it is not working then that would be great. But my PR can be found here: #56 Please review and merge my PR so this tiny issue can finally be over! EDIT: I got trigger happy and just realized that PR #49 exists! |
Im still running into this using platformio. Am I installing the wrong version? |
FYI ... I had this issue today and used this fix to correct the error . Thanks |
@eatonJ How did you fix it? I'm still getting the error when importing to PlatformIO. :-/ |
yes, 2023 5-1 still error |
Tried to implement this library in a PlatformIO project. Received similar error messages posted above. However, I noticed this message in the output when compiling: After reviewing the "Built-In" portion of the supported libraries within PlatformIO. I noticed that LittleFS is built into the framework-arduinoespressif32. My project compiled successfully after doing the following in my main.cpp file: Then add the following in the platformio.ini file, under the lib_deps = LittleFS @ ^2.0.0 |
Received similar error messages posted above. |
still had the error compiling LITTLEFS_test.ino under Arduino 1.8.19 |
I have a PR located here (#56). It has been approved but no action has been taken to merge it for some reason. |
Fixed by adding third argument
File f = open(path, "r", false);
The text was updated successfully, but these errors were encountered: