Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BSP_B-L475E-IOT01
Revision 6:5be6b5fd262f, committed 2017-12-20
- Comitter:
- mbed_official
- Date:
- Wed Dec 20 23:00:15 2017 +0000
- Parent:
- 5:722fba3ef1bd
- Child:
- 7:316e14753781
- Commit message:
- Merge pull request #26 from ARMmbed/geky-block-count-docs
Add note about minimum block counts
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-filesystem
Changed in this revision
| README.md | Show annotated file Show diff for this revision Revisions of this file |
--- a/README.md Wed Dec 20 17:45:15 2017 +0000
+++ b/README.md Wed Dec 20 23:00:15 2017 +0000
@@ -183,6 +183,12 @@
+ FATFileSysten fs("fs");
```
+**Note:** Different file systems require different minimum numbers of storage
+blocks to function. For the `FATFileSystem`, this example requires a minimum of
+256 blocks, and for the `LittleFileSystem`, this example requires a minimum of 6
+blocks. You can find the number of blocks on a block device by dividing the
+block device's size by its erase size.
+
Mbed OS has two options for the file system:
- [**LittleFileSystem**](https://os.mbed.com/docs/latest/reference/littlefilesystem.html) -