-
Notifications
You must be signed in to change notification settings - Fork 21
Add blurb about the MBR and other utility block devices #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,14 @@ Block devices indicate their block sizes through the `get_read_size`, `get_progr | |
|
||
As a rule of thumb, you can use the erase size for applications that use a single block size (for example, the FAT file system). | ||
|
||
## Utility block devices | ||
|
||
mbed OS contains several utility block devices to give you better control over how storage is allocated. | ||
|
||
- The [slicing block device](https://github.com/ARMmbed/mbed-os/blob/master/features/filesystem/bd/SlicingBlockDevice.h) allows you to partition storage into smaller block devices that you can use independentally. | ||
|
||
- The [chaining block device](https://github.com/ARMmbed/mbed-os/blob/master/features/filesystem/bd/ChainingBlockDevice.h) allows you to chain multiple block devices together and extend the usable amount of storage. | ||
- The [MBR block device](https://github.com/ARMmbed/mbed-os/blob/master/features/filesystem/bd/MBRBlockDevice.h) allows you to partition storage with a [Master Boot Record](https://en.wikipedia.org/wiki/Master_boot_record). The MBR allows the partitions to be configured seperately from outside the application. | ||
|
||
|
||
## Example block devices | ||
|
||
- [SDBlockDevice](https://github.com/armmbed/sd-driver) - Block device for SD cards. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest changing "how storage is allocated" to "the allocation of storage" to eliminate the passive voice.