-
Notifications
You must be signed in to change notification settings - Fork 359
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
ERROR: E (1099) SPIFFS: mount failed, -10025 #175
Comments
using esptool with erase_flash did the trick - but on the next boot up it got:
and after the next reset I was stuck with the same error:
faulty module? |
tried with another ai-thinker module - exactly same problem. default webserver from ESP32 library works without any issues. |
I have this problem with an alternative camera module from China. Apparently the init of the camera takes a little longer and then there are problems mounting the file system. I solved the problem by adding a "delay(1000);" before starting the file system. You can also try shorter delays. For me it always worked with 1000ms.
|
Another solution of sorts. I can confirm that timing is the issue with respect to 4.0.beta2 the execution of the format function in Saving and Loading of preferences works, and the webcam software is a joy compared to the espressif demo, thank you. Thinking about why this should happen, as there is already a delay of 1000 in this function, I suspect the |
Nice. Will there be a bugfix in the next beta? Release date? Thx |
Interesting.. I'll look at the timings and see what can be done. Thanks for the reports guys! |
I keep having this issue, regardless of the workarounds in the thread. I have what appears to be an AI-thinker module, but who really knows? Currently the code is unusable for me, though :( |
I also have this issue, no matter if I put
@founfabug Is this correct ?
|
Update:
Please test this procedure if you have problems with SPIFFS mount error. Update:
This can only be resolved with the SPIFFS_Test.ino procedure. A new flash withou that brings again the SPIFFS mount error.... |
The working "solution" I ended up with is to downgrade back to esp32 V1.06. I'm not sure what has added and been used between V1.06 and V2.0.2 ( except auth ) but it seems to cause the breakage. |
Work after format the SPIFFS ;-) bool formatted = SPIFFS.format(); if(formatted){ |
Thank you, I will try this. At what exact line in which file should this block be inserted ? |
In setup of SPIFFS_Test.ino after Serial.begin(115200); and delete other things But, the better way, it's make just one ino project to only format SPIFFS.. |
I follow this steps but when I try to save the settings camera crashes.
I can save the config, erase then change and save again. I have one more camera from the same amazon seller, so I'm gonna test this without flashing SPIFFS_Test.ino and just moving the delay(); and see, then I'll update the results here :) |
I tried to compile and flash esp32-cam-webserver with the delay(200) on a brand new ESP32-CAM but I got SPIFFS Error at boot. |
I have the same problem. Where can I find |
Never mind. I found this: https://techtutorialsx.com/2019/02/24/esp32-arduino-formatting-the-spiffs-file-system/. |
I know you found it, but for anyone else, it's in the Arduino IDE, once you install the ESP32 boards, you can go to |
Rolling this and all related into a single issue: #214 |
Hello, even if i successfully format the SPIFFS following the upper instruction, i keep have the boot loop error with following message
Have some one fixed in other ways ? |
using the latest beta 4.x - setting up all according to the documentation - flashed with arduino without any issue... (double checked the partition theme and PSRAM setting... the but doesnt startup:
11:37:04.987 -> ====
11:37:04.987 -> esp32-cam-webserver: ESP32 camera server
11:37:04.987 -> Code Built: Oct 18 2021 @ 11:31:30
11:37:04.987 -> Base Release: 4.0.beta2
11:37:05.174 -> Camera init succeeded
11:37:05.174 -> OV2640 camera module detected
11:37:05.221 -> E (1099) SPIFFS: mount failed, -10025
11:37:06.163 -> ets Jun 8 2016 00:22:57
11:37:06.163 ->
11:37:06.163 -> rst:0x8 (TG1WDT_SYS_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
11:37:06.210 -> configsip: 0, SPIWP:0xee
11:37:06.210 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
11:37:06.210 -> mode:DIO, clock div:1
11:37:06.210 -> load:0x3fff0030,len:1240
11:37:06.210 -> load:0x40078000,len:13012
11:37:06.210 -> load:0x40080400,len:3648
11:37:06.210 -> entry 0x400805f8
any help appreciated :)
thx
The text was updated successfully, but these errors were encountered: