aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l1/src/bin
diff options
context:
space:
mode:
authorMathias <[email protected]>2022-09-30 06:00:46 +0200
committerMathias <[email protected]>2022-09-30 06:00:46 +0200
commita7fdeac560b5e277afa80cd60f788a48df6069c9 (patch)
tree03a122c378fb06ee8b86f05fb456db9a16baa1f2 /examples/stm32l1/src/bin
parent1d6f5493e7764767eb592e0b90d6b07d46b100ca (diff)
Remove flash lock/unlock public API from stm32 flash, and perform the unlocking and locking automatically on erase and write operations
Diffstat (limited to 'examples/stm32l1/src/bin')
-rw-r--r--examples/stm32l1/src/bin/flash.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32l1/src/bin/flash.rs b/examples/stm32l1/src/bin/flash.rs
index a76b9879f..476ed51a4 100644
--- a/examples/stm32l1/src/bin/flash.rs
+++ b/examples/stm32l1/src/bin/flash.rs
@@ -15,7 +15,7 @@ async fn main(_spawner: Spawner) {
15 15
16 const ADDR: u32 = 0x26000; 16 const ADDR: u32 = 0x26000;
17 17
18 let mut f = Flash::unlock(p.FLASH); 18 let mut f = Flash::new(p.FLASH);
19 19
20 info!("Reading..."); 20 info!("Reading...");
21 let mut buf = [0u8; 8]; 21 let mut buf = [0u8; 8];