You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/storage/wear_levelling/README.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# SD Card example
1
+
# Wear levelling example
2
2
3
3
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:
4
4
@@ -15,9 +15,14 @@ This example demonstrates how to use wear levelling library and FATFS library to
15
15
Here is an typical example console output.
16
16
17
17
```
18
-
Try to open file ...
19
-
I (239) wear_level: Reading file
20
-
Read from file: 'Hello User! I'm happy to see you!1'
21
-
W (239) wear_levelling: wl_unmount Delete driver
18
+
I (280) example: Mounting FAT filesystem
19
+
W (440) vfs_fat_spiflash: f_mount failed (13)
20
+
I (440) vfs_fat_spiflash: Formatting FATFS partition, allocation unit size=4096
21
+
I (660) vfs_fat_spiflash: Mounting again
22
+
I (660) example: Opening file
23
+
I (910) example: File written
24
+
I (910) example: Reading file
25
+
I (920) example: Read from file: 'written using ESP-IDF v3.1-dev-171-gf9ad17eee-dirty'
0 commit comments