Skip to content

Commit 63416ef

Browse files
author
Amanda Butler
authored
Add link to storage.md
Add link requested in comments.
1 parent a4b1b83 commit 63416ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/api/storage/storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ The `fopen` function is similar to the open function above but associates a stre
1919

2020
#### Types of file systems
2121

22-
- [**LittleFileSystem**](https://os.mbed.com/docs/development/reference/littlefilesystem.html) - The little file system (LittleFS) is a fail-safe file system we designed for embedded systems, specifically for microcontrollers that use flash storage.
22+
- [**LittleFileSystem**](littlefilesystem.html) - The little file system (LittleFS) is a fail-safe file system we designed for embedded systems, specifically for microcontrollers that use flash storage.
2323

2424
- **Bounded RAM/ROM** - This file system works with a limited amount of memory. It avoids recursion and limits dynamic memory to configurable buffers.
2525

2626
- **Power-loss resilient** - We designed this for operating systems that may have random power failures. It has strong copy-on-write guarantees and keeps storage on disk in a valid state.
2727

2828
- **Wear leveling** - Because the most common form of embedded storage is erodible flash memories, this file system provides a form of dynamic wear leveling for systems that cannot fit a full flash translation layer.
2929

30-
- **FATFileSystem** - The FAT file system is an established disk-oriented file system that you can find on most operating systems, including Windows, Linux, Mac OS X and Mbed OS.
30+
- [**FATFileSystem**](fatfilesystem.html) - The FAT file system is an established disk-oriented file system that you can find on most operating systems, including Windows, Linux, Mac OS X and Mbed OS.
3131

3232
- **Portable** - Due to its support across operating systems, the FAT file system provides access to storage from both the embedded system and your PC.
3333

0 commit comments

Comments
 (0)