diff options
author | Ulf Lilleengen <ulf.lilleengen@gmail.com> | 2022-04-26 18:33:09 +0200 |
---|---|---|
committer | Ulf Lilleengen <ulf.lilleengen@gmail.com> | 2022-04-27 15:17:18 +0200 |
commit | da61611f8f57410a87106961efd24d80e6a8f63e (patch) | |
tree | 81bf5f96a052be8cc74fa4f513592adf1f4bb1db /examples/stm32l1/src | |
parent | 484e0acc638c27366e19275c32db9c8487ea8fba (diff) | |
download | embassy-da61611f8f57410a87106961efd24d80e6a8f63e.zip |
Add bootloader to CI
Diffstat (limited to 'examples/stm32l1/src')
-rw-r--r-- | examples/stm32l1/src/bin/flash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32l1/src/bin/flash.rs b/examples/stm32l1/src/bin/flash.rs index b234289a..eea838cb 100644 --- a/examples/stm32l1/src/bin/flash.rs +++ b/examples/stm32l1/src/bin/flash.rs @@ -15,7 +15,7 @@ use panic_probe as _; async fn main(_spawner: Spawner, p: Peripherals) { info!("Hello Flash!"); - const ADDR: u32 = 0x8026000; + const ADDR: u32 = 0x26000; let mut f = Flash::unlock(p.FLASH); |