aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/rp/src
diff options
context:
space:
mode:
authorRasmus Melchior Jacobsen <[email protected]>2023-05-25 13:42:42 +0200
committerRasmus Melchior Jacobsen <[email protected]>2023-05-25 20:07:42 +0200
commit7371eefa8666c304fce5c0e25f5315b1f10161fa (patch)
tree5f497dd02f3c08e7a383c43eefeb9763f59705d5 /examples/boot/application/rp/src
parent15636f05f54458a184f0e117b1cfdb9d8e929f1d (diff)
Align with new bind_interrupt
Diffstat (limited to 'examples/boot/application/rp/src')
-rw-r--r--examples/boot/application/rp/src/bin/a.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/boot/application/rp/src/bin/a.rs b/examples/boot/application/rp/src/bin/a.rs
index e3ac634c2..2b84ec614 100644
--- a/examples/boot/application/rp/src/bin/a.rs
+++ b/examples/boot/application/rp/src/bin/a.rs
@@ -26,7 +26,7 @@ async fn main(_s: Spawner) {
26 let mut watchdog = Watchdog::new(p.WATCHDOG); 26 let mut watchdog = Watchdog::new(p.WATCHDOG);
27 watchdog.start(Duration::from_secs(8)); 27 watchdog.start(Duration::from_secs(8));
28 28
29 let mut flash: Flash<_, FLASH_SIZE> = Flash::new(p.FLASH); 29 let mut flash: Flash<_, FLASH_SIZE> = Flash::new_blocking_only(p.FLASH);
30 30
31 let mut updater = FirmwareUpdater::default(); 31 let mut updater = FirmwareUpdater::default();
32 32