summaryrefslogtreecommitdiff
path: root/examples/boot/bootloader/stm32
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/bootloader/stm32')
-rw-r--r--examples/boot/bootloader/stm32/src/main.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/boot/bootloader/stm32/src/main.rs b/examples/boot/bootloader/stm32/src/main.rs
index bb5d3e53..294464d1 100644
--- a/examples/boot/bootloader/stm32/src/main.rs
+++ b/examples/boot/bootloader/stm32/src/main.rs
@@ -20,10 +20,9 @@ fn main() -> ! {
*/
let mut bl: BootLoader<ERASE_SIZE, WRITE_SIZE> = BootLoader::default();
- let mut flash = Flash::unlock(p.FLASH);
- let start = bl.prepare(&mut SingleFlashConfig::new(
- &mut BootFlash::<_, ERASE_SIZE, ERASE_VALUE>::new(&mut flash),
- ));
+ let flash = Flash::unlock(p.FLASH);
+ let mut flash = BootFlash::<_, ERASE_SIZE, ERASE_VALUE>::new(flash);
+ let start = bl.prepare(&mut SingleFlashConfig::new(&mut flash));
core::mem::drop(flash);
unsafe { bl.load(start) }
}