aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wb/src/bin/mac_ffd_net.rs
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-18 18:28:12 -0500
committerxoviat <[email protected]>2023-07-18 18:28:12 -0500
commit890d113b855dc11be75a9716401c7703f4ce48e1 (patch)
tree1906fc00f0ffea07f0f9a0b4c47810916c8a7c7e /examples/stm32wb/src/bin/mac_ffd_net.rs
parentd040871f7a078db94846305463c30a461f821d7f (diff)
wpan: fully implement initial draft concept
Diffstat (limited to 'examples/stm32wb/src/bin/mac_ffd_net.rs')
-rw-r--r--examples/stm32wb/src/bin/mac_ffd_net.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wb/src/bin/mac_ffd_net.rs b/examples/stm32wb/src/bin/mac_ffd_net.rs
index b1cf051bf..6072f418c 100644
--- a/examples/stm32wb/src/bin/mac_ffd_net.rs
+++ b/examples/stm32wb/src/bin/mac_ffd_net.rs
@@ -25,7 +25,7 @@ async fn run_mm_queue(memory_manager: mm::MemoryManager) {
25} 25}
26 26
27#[embassy_executor::task] 27#[embassy_executor::task]
28async fn run_mac(runner: &'static Runner) { 28async fn run_mac(runner: &'static Runner<'static>) {
29 runner.run().await; 29 runner.run().await;
30} 30}
31 31