aboutsummaryrefslogtreecommitdiff
path: root/cyw43/src/runner.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cyw43/src/runner.rs')
-rw-r--r--cyw43/src/runner.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cyw43/src/runner.rs b/cyw43/src/runner.rs
index 1c187faa5..83aee6b40 100644
--- a/cyw43/src/runner.rs
+++ b/cyw43/src/runner.rs
@@ -555,14 +555,14 @@ where
555 555
556 self.bus.bp_write8(base + AI_RESETCTRL_OFFSET, 0).await; 556 self.bus.bp_write8(base + AI_RESETCTRL_OFFSET, 0).await;
557 557
558 Timer::after(Duration::from_millis(1)).await; 558 Timer::after_millis(1).await;
559 559
560 self.bus 560 self.bus
561 .bp_write8(base + AI_IOCTRL_OFFSET, AI_IOCTRL_BIT_CLOCK_EN) 561 .bp_write8(base + AI_IOCTRL_OFFSET, AI_IOCTRL_BIT_CLOCK_EN)
562 .await; 562 .await;
563 let _ = self.bus.bp_read8(base + AI_IOCTRL_OFFSET).await; 563 let _ = self.bus.bp_read8(base + AI_IOCTRL_OFFSET).await;
564 564
565 Timer::after(Duration::from_millis(1)).await; 565 Timer::after_millis(1).await;
566 } 566 }
567 567
568 async fn core_is_up(&mut self, core: Core) -> bool { 568 async fn core_is_up(&mut self, core: Core) -> bool {