aboutsummaryrefslogtreecommitdiff
path: root/embassy-embedded-hal/src
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-embedded-hal/src')
-rw-r--r--embassy-embedded-hal/src/flash/partition/asynch.rs1
-rw-r--r--embassy-embedded-hal/src/flash/partition/blocking.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/embassy-embedded-hal/src/flash/partition/asynch.rs b/embassy-embedded-hal/src/flash/partition/asynch.rs
index 5920436dd..576e7e5b6 100644
--- a/embassy-embedded-hal/src/flash/partition/asynch.rs
+++ b/embassy-embedded-hal/src/flash/partition/asynch.rs
@@ -12,6 +12,7 @@ use super::Error;
12/// There is no guarantee that muliple partitions on the same flash 12/// There is no guarantee that muliple partitions on the same flash
13/// operate on mutually exclusive ranges - such a separation is up to 13/// operate on mutually exclusive ranges - such a separation is up to
14/// the user to guarantee. 14/// the user to guarantee.
15#[derive(Clone)]
15pub struct Partition<'a, M: RawMutex, T: NorFlash> { 16pub struct Partition<'a, M: RawMutex, T: NorFlash> {
16 flash: &'a Mutex<M, T>, 17 flash: &'a Mutex<M, T>,
17 offset: u32, 18 offset: u32,
diff --git a/embassy-embedded-hal/src/flash/partition/blocking.rs b/embassy-embedded-hal/src/flash/partition/blocking.rs
index 2ddbe3de0..478f39246 100644
--- a/embassy-embedded-hal/src/flash/partition/blocking.rs
+++ b/embassy-embedded-hal/src/flash/partition/blocking.rs
@@ -13,6 +13,7 @@ use super::Error;
13/// There is no guarantee that muliple partitions on the same flash 13/// There is no guarantee that muliple partitions on the same flash
14/// operate on mutually exclusive ranges - such a separation is up to 14/// operate on mutually exclusive ranges - such a separation is up to
15/// the user to guarantee. 15/// the user to guarantee.
16#[derive(Clone)]
16pub struct BlockingPartition<'a, M: RawMutex, T: NorFlash> { 17pub struct BlockingPartition<'a, M: RawMutex, T: NorFlash> {
17 flash: &'a Mutex<M, RefCell<T>>, 18 flash: &'a Mutex<M, RefCell<T>>,
18 offset: u32, 19 offset: u32,