sonika.rathi 360f7b1e14 fix(sd_card): update sd_card troubleshooting notes in readme.md 2 年 前
..
custom_flash_driver 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
emmc 920ecff168 sdmmc: in/out phase adapted to esp32 and esp32s3 2 年 前
ext_flash_fatfs bf2a7b2df6 esp32h4: removed esp32h4 related codes 2 年 前
fatfsgen 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
littlefs 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
nvs_rw_blob 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
nvs_rw_value 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
nvs_rw_value_cxx 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
nvsgen 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
partition_api 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
parttool 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
perf_benchmark 6582e6c422 ci(examples): Enable storage/perf_benchmark build test for spiflash on ESP32-P4 v2 2 年 前
sd_card 360f7b1e14 fix(sd_card): update sd_card troubleshooting notes in readme.md 2 年 前
semihost_vfs 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
spiffs 5ea4df682e feat(esp_lcd): updated lvgl example to loading image from file system 2 年 前
spiffsgen 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
wear_levelling 7dbd3f6909 feat(ci): Enable p4 example, test_apps and unit tests CI build 2 年 前
.build-test-rules.yml d08518e310 feat(sdspi): supported sdspi on esp32p4 2 年 前
README.md 360f7b1e14 fix(sd_card): update sd_card troubleshooting notes in readme.md 2 年 前

README.md

Storage Examples

Storage and management of user and system data in module’s flash and on external memory / devices. This directory contains a range of examples ESP-IDF projects. These are intended to demonstrate the storage features, and to provide code that you can copy and adapt into your own projects.

Example Layout

The examples are grouped into sub-directories by category. Each category directory contains one or more example projects:

  • custom_flash_driver example demonstrates how to implement your own flash chip driver by overriding the default driver.
  • emmc example demonstrates how to use an eMMC chip with an ESP device.
  • ext_flash_fatfs example demonstrates how to use FATFS partition with external SPI FLASH chip.
  • fatfsgen example demonstrates how to use FATFS partition
  • nvs_rw_blob example demonstrates how to read and write a single integer value and a blob (binary large object) using NVS to preserve them between ESP module restarts.
  • nvs_rw_value example demonstrates how to read and write a single integer value using NVS.
  • nvs_rw_value_cxx example demonstrates how to read and write a single integer value using NVS (it uses the C++ NVS handle API).
  • partition_api examples demonstrate how to use different partition APIs.
  • parttool example demonstrates common operations the partitions tool allows the user to perform.
  • sd_card examples demonstrate how to use an SD card with an ESP device.
  • semihost_vfs example demonstrates how to use semihosting VFS driver with ESP device.
  • spiffs example demonstrates how to use SPIFFS with ESP device.
  • spiffsgen example demonstrates how to use the SPIFFS image generation tool spiffsgen.py to automatically create a SPIFFS.
  • wear_levelling example demonstrates how to use wear levelling library and FATFS library to store files in a partition inside SPI flash.

More

See the README.md file in the upper level examples directory for more information about examples.