aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wb/src
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-06-25 11:38:48 -0500
committerxoviat <[email protected]>2023-06-25 11:38:48 -0500
commit018622f607a17037903ef7c5592dda762002f89b (patch)
tree7fe23e3a556a06202bf926d6176d39949f4c1ab6 /examples/stm32wb/src
parent49333ce6adf28ff6c3eb1a632c0d4860379ef3ef (diff)
stm32/wpan: update example
Diffstat (limited to 'examples/stm32wb/src')
-rw-r--r--examples/stm32wb/src/bin/tl_mbox_mac.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/stm32wb/src/bin/tl_mbox_mac.rs b/examples/stm32wb/src/bin/tl_mbox_mac.rs
index afd319a41..f67be4682 100644
--- a/examples/stm32wb/src/bin/tl_mbox_mac.rs
+++ b/examples/stm32wb/src/bin/tl_mbox_mac.rs
@@ -49,7 +49,9 @@ async fn main(_spawner: Spawner) {
49 let sys_event = mbox.sys_subsystem.read().await; 49 let sys_event = mbox.sys_subsystem.read().await;
50 info!("sys event: {}", sys_event.payload()); 50 info!("sys event: {}", sys_event.payload());
51 51
52 mbox.sys_subsystem.shci_c2_mac_802_15_4_init().await; 52 let result = mbox.sys_subsystem.shci_c2_mac_802_15_4_init().await;
53 info!("initialized mac: {}", result);
54
53 // 55 //
54 // info!("starting ble..."); 56 // info!("starting ble...");
55 // mbox.ble_subsystem.t_write(0x0c, &[]).await; 57 // mbox.ble_subsystem.t_write(0x0c, &[]).await;