We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1d39f5 commit e59844cCopy full SHA for e59844c
embedded-storage-async/src/nor_flash.rs
@@ -1,7 +1,7 @@
1
use embedded_storage::nor_flash::ErrorType;
2
3
/// Read only NOR flash trait.
4
-pub trait AsyncReadNorFlash: ErrorType {
+pub trait ReadNorFlash: ErrorType {
5
/// The minumum number of bytes the storage peripheral can read
6
const READ_SIZE: usize;
7
@@ -19,7 +19,7 @@ pub trait AsyncReadNorFlash: ErrorType {
19
}
20
21
/// NOR flash trait.
22
-pub trait AsyncNorFlash: AsyncReadNorFlash {
+pub trait NorFlash: ReadNorFlash {
23
/// The minumum number of bytes the storage peripheral can write
24
const WRITE_SIZE: usize;
25
0 commit comments