aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf5340/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nrf5340/src')
-rw-r--r--examples/nrf5340/src/bin/gpiote_channel.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nrf5340/src/bin/gpiote_channel.rs b/examples/nrf5340/src/bin/gpiote_channel.rs
index c0a55142f..23f6fca98 100644
--- a/examples/nrf5340/src/bin/gpiote_channel.rs
+++ b/examples/nrf5340/src/bin/gpiote_channel.rs
@@ -61,5 +61,5 @@ async fn main(_spawner: Spawner) {
61 } 61 }
62 }; 62 };
63 63
64 futures::join!(button1, button2, button3, button4); 64 embassy_futures::join::join4(button1, button2, button3, button4).await;
65} 65}