2023-01-10 05:59:46 +00:00
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
2022-05-20 09:50:08 +00:00
2018-01-08 08:22:44 +00:00
# Wear levelling example
2017-04-10 14:06:35 +00:00
2018-10-31 07:57:48 +00:00
(See the README.md file in the upper level 'examples' directory for more information about examples.)
2017-04-10 14:06:35 +00:00
This example demonstrates how to use wear levelling library and FATFS library to store files in a partition inside SPI flash. Example does the following steps:
2022-03-04 19:15:49 +00:00
1. Use an "all-in-one" `esp_vfs_fat_spiflash_mount_rw_wl` function to:
2017-04-10 14:06:35 +00:00
- find a partition in SPI flash,
- initialize wear levelling library using this partition
- mount FAT filesystem using FATFS library (and format the filesystem, if the filesystem can not be mounted),
- register FAT filesystem in VFS, enabling C standard library and POSIX functions to be used.
2. Create a file using `fopen` and write to it using `fprintf` .
3. Open file for reading, read back the line, and print it to the terminal.
2018-10-31 07:57:48 +00:00
Wear levelling partition size is set in partitions_example.csv file. See [Partition Tables ](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/partition-tables.html ) documentation for more information.
## How to use example
### Hardware required
This example does not require any special hardware, and can be run on any common development board.
### Build and flash
Build the project and flash it to the board, then run monitor tool to view serial output:
```
idf.py -p PORT flash monitor
```
2019-06-23 01:54:31 +00:00
(Replace PORT with serial port name.)
2018-10-31 07:57:48 +00:00
(To exit the serial monitor, type ``Ctrl-]``.)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
2017-04-10 14:06:35 +00:00
## Example output
2022-05-20 09:50:08 +00:00
Here is a typical example console output.
2017-04-10 14:06:35 +00:00
```
2018-01-08 08:22:44 +00:00
I (280) example: Mounting FAT filesystem
W (440) vfs_fat_spiflash: f_mount failed (13)
I (440) vfs_fat_spiflash: Formatting FATFS partition, allocation unit size=4096
I (660) vfs_fat_spiflash: Mounting again
I (660) example: Opening file
I (910) example: File written
I (910) example: Reading file
I (920) example: Read from file: 'written using ESP-IDF v3.1-dev-171-gf9ad17eee-dirty'
I (920) example: Unmounting FAT filesystem
I (1000) example: Done
2017-04-10 14:06:35 +00:00
```
2018-10-31 07:57:48 +00:00
2021-08-11 13:24:17 +00:00
To erase the contents of wear levelling partition, run `idf.py erase-flash` command. Then upload the example again as described above.