ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

frankcohen
Posts: 25
Joined: Mon Apr 05, 2021 4:03 am

ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

Postby frankcohen » Mon Aug 21, 2023 7:47 am

I'm building a media player with ESP32-S3. I store the mjpeg files on an SPI attached NAND (it's a surface mount version of an SD card, using 1 bit SPI transfer). I'm getting core resets occasionally. The files are typically 1 to 5 mbytes. 95% of the operations are READ, very few writes.

Which library is best for my ESP32-S3 to communicate through file system APIs to the NAND? Options on ESP32 seem to be: Espressif's SD library, LittleFS, and SDFAT.

-Frank

ESP_Sprite
Posts: 9619
Joined: Thu Nov 26, 2015 4:08 am

Re: ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

Postby ESP_Sprite » Mon Aug 21, 2023 10:05 am

If it's indeed a SD-card interface, it already does wear leveling for you. In that case, the ESP-IDF SD-card driver + FAT should work. I think littlefs is mostly intended for 'raw' flash.

frankcohen
Posts: 25
Joined: Mon Apr 05, 2021 4:03 am

Re: ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

Postby frankcohen » Mon Aug 21, 2023 12:15 pm

Thanks. Yes, the NAND gives a 1 pin SD interface over SPI. Espressif's SD works with it. However, I am seeing flakiness in the SD library. I will make a bunch of READS to an open file, and see the ESP32-S3 reboot.

For my project I am using Arduino IDE 2.1 nightly build.

ESP32-S3 crashes and reboots. Try-Catch doesn't appear to be recognized when SD fails. I haven't found a way to catch an exception.

-Frank

ESP_Sprite
Posts: 9619
Joined: Thu Nov 26, 2015 4:08 am

Re: ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

Postby ESP_Sprite » Mon Aug 21, 2023 1:18 pm

Do you have a backtrace from the ESP? May be something else like memory corruption; generally I'd expect the SD stack to be stable.

RandomInternetGuy
Posts: 48
Joined: Fri Aug 11, 2023 4:56 am

Re: ESP32-S3 + NAND + SD, or SDFAT, or LittleFS?

Postby RandomInternetGuy » Tue Aug 22, 2023 7:29 am

If this is something homebrew, are you 100% certain (checked with a scope/logic analyzer) that your power is stable?

Flash is pretty power hungry. Writing it is worse than reading it, but it's still a thing. Is your power source to the chip sagging? Do you have decoupling and power caps in the places that need them? (I'm not an EE and can't tell you where that is or the appropriate values.)

It's also possible that you have a subtle locking issue. If your directory and filesystem traffic is interleaving - in ways approved by whatever your filesystem's rules are - you may be issuing back to back SPI address cycles or back-to-back SPI data cycles instead of interleaving them. A logic analyzer on that trace under load (ideally, a fraction of a second before a crash, but we all know that's harder than it sounds) may be telling. If your entire system is homebrew, that kind of thing is more likely than if you're using, say, Nuttx and are "just" doing the UI yourself. SPI transfers aren't really atomic on their own; you can sometimes start getting responses on a read while you're still clocking out addresses and you have to guard against your own code stuffing out another address cycle in between the time you've started a MOSI and the time the Peripheral has acked that cycle with the appropriate (via agreement, since CS is unidirectional and there is no ack line) number of cycles. It's all on you to not interrupt your own cycles with other cycles. If you're using SPI libraries, they''ll usually reduce the number of tears spent debugging this. (Except for the times when they INCREASE the number of tears. You'll only know which it is when you've finished. :-)

Ah, there's another possible source of entertainment - do you have anything else sharing this SPI bus? If your display is on SPI and its updating the time seek bar and the SPI is getting involved in the filesystem's SPI bus, that can provide MORE hours of debugging joy!


It's usually worth the investment (perhaps counterintuitively) to make it crash MORE often. Debugging something that crashes every minute is WAY easier than debugging a crash that happens only once a day. It's also worth hardware instrumentation to snoop the bus cycles on the SPI and the voltage levels of everything involved.

Who is online

Users browsing this forum: No registered users and 61 guests