esp-idf/docs/en/api-reference/storage/index.rst

37 wiersze
1.7 KiB
ReStructuredText
Czysty Zwykły widok Historia

Storage API
***********
:link_to_translation:`zh_CN:[中文]`
2023-10-13 19:55:41 +00:00
This section contains reference of the high-level storage APIs. They are based on low-level drivers such as SPI flash, SD/MMC.
2023-10-13 19:55:41 +00:00
- :doc:`Partitions API <partition>` allow block based access to SPI flash according to the :doc:`/api-guides/partition-tables`.
- :doc:`Non-Volatile Storage library (NVS) <nvs_flash>` implements a fault-tolerant wear-levelled key-value storage in SPI NOR flash.
- :doc:`Virtual File System (VFS) <vfs>` library provides an interface for registration of file system drivers. SPIFFS, FAT and various other file system libraries are based on the VFS.
2023-10-13 19:55:41 +00:00
- :doc:`SPIFFS <spiffs>` is a wear-levelled file system optimized for SPI NOR flash, well suited for small partition sizes and low throughput
- :doc:`FAT <fatfs>` is a standard file system which can be used in SPI flash or on SD/MMC cards
- :doc:`Wear Levelling <wear-levelling>` library implements a flash translation layer (FTL) suitable for SPI NOR flash. It is used as a container for FAT partitions in flash.
.. note::
2023-10-13 19:55:41 +00:00
It is suggested to use high-level APIs (``esp_partition`` or file system) instead of low-level driver APIs to access the SPI NOR flash.
2023-10-13 19:55:41 +00:00
Due to the restriction of NOR flash and ESP hardware, accessing the main flash will affect the performance of the whole system. See :doc:`/api-reference/peripherals/spi_flash/index` to learn more about the limitations.
.. toctree::
:maxdepth: 1
fatfs
mass_mfg.rst
nvs_flash
nvs_encryption
nvs_partition_gen.rst
nvs_partition_parse.rst
sdmmc
partition
spiffs
vfs
wear-levelling
2019-06-17 06:23:52 +00:00
Code examples for this API section are provided in the :example:`storage` directory of ESP-IDF examples.