diff options
author | Mathias <mk@blackbird.online> | 2022-09-30 06:00:46 +0200 |
---|---|---|
committer | Mathias <mk@blackbird.online> | 2022-09-30 06:00:46 +0200 |
commit | a7fdeac560b5e277afa80cd60f788a48df6069c9 (patch) | |
tree | 03a122c378fb06ee8b86f05fb456db9a16baa1f2 /examples/stm32f3 | |
parent | 1d6f5493e7764767eb592e0b90d6b07d46b100ca (diff) | |
download | embassy-a7fdeac560b5e277afa80cd60f788a48df6069c9.zip |
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/stm32f3')
-rw-r--r-- | examples/stm32f3/src/bin/flash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32f3/src/bin/flash.rs b/examples/stm32f3/src/bin/flash.rs index 2cf24dbd..baa7484d 100644 --- a/examples/stm32f3/src/bin/flash.rs +++ b/examples/stm32f3/src/bin/flash.rs @@ -15,7 +15,7 @@ async fn main(_spawner: Spawner) { const ADDR: u32 = 0x26000; - let mut f = Flash::unlock(p.FLASH); + let mut f = Flash::new(p.FLASH); info!("Reading..."); let mut buf = [0u8; 8]; |