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: README.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,12 @@ library. It is written in pure-Rust, is `#![no_std]` and does not use `alloc`
6
6
or `collections` to keep the memory footprint low. In the first instance it is
7
7
designed for readability and simplicity over performance.
8
8
9
-
## Using the crate
9
+
## Using the crate in an application
10
10
11
-
You will need something that implements the `BlockDevice` trait, which can read and write the 512-byte blocks (or sectors) from your card. If you were to implement this over USB Mass Storage, there's no reason this crate couldn't work with a USB Thumb Drive, but we only supply a `BlockDevice` suitable for reading SD and SDHC cards over SPI.
11
+
You will need something that implements the `BlockDevice` trait, which can read and write the
12
+
512-byte blocks (or sectors) from your card. If you were to implement this over USB Mass Storage,
13
+
there's no reason this crate couldn't work with a USB Thumb Drive, but we only supply a
14
+
`BlockDevice` implementation suitable for reading SD and SDHC cards over SPI.
0 commit comments