aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32-wpan/src/wb55/mod.rs
diff options
context:
space:
mode:
authorxoviat <[email protected]>2025-12-19 00:17:01 +0000
committerGitHub <[email protected]>2025-12-19 00:17:01 +0000
commit58cb57aa88ff6caa77087d650068aee367092dc8 (patch)
treeb85b04458bb34c8a49fc1775e577d0f3e02d2fc3 /embassy-stm32-wpan/src/wb55/mod.rs
parentb6a7d0610105e8f1e23fd1b3b0c1afd4efac4fe4 (diff)
parent6132ea0bce4b25319ef6ab71ed7ca431fa3f6555 (diff)
Merge pull request #5090 from xoviat/wpan
add fus fw upgrade methods
Diffstat (limited to 'embassy-stm32-wpan/src/wb55/mod.rs')
-rw-r--r--embassy-stm32-wpan/src/wb55/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32-wpan/src/wb55/mod.rs b/embassy-stm32-wpan/src/wb55/mod.rs
index 95cfe09f1..814303a05 100644
--- a/embassy-stm32-wpan/src/wb55/mod.rs
+++ b/embassy-stm32-wpan/src/wb55/mod.rs
@@ -176,7 +176,7 @@ impl<'d> TlMbox<'d> {
176 let mm = sub::mm::MemoryManager::new(ipcc_mm_release_buffer_channel); 176 let mm = sub::mm::MemoryManager::new(ipcc_mm_release_buffer_channel);
177 let mut sys = sub::sys::Sys::new(ipcc_system_cmd_rsp_channel, ipcc_system_event_channel); 177 let mut sys = sub::sys::Sys::new(ipcc_system_cmd_rsp_channel, ipcc_system_event_channel);
178 178
179 debug!("sys event: {}", sys.read().await.payload()); 179 debug!("sys event: {}", sys.read_ready().await);
180 180
181 Self { 181 Self {
182 sys_subsystem: sys, 182 sys_subsystem: sys,