aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf52840/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-04-26 21:59:31 +0000
committerGitHub <[email protected]>2024-04-26 21:59:31 +0000
commit34074e6eb0741e084653b3ef71163393741f558b (patch)
treef627117733d3fcd5bbb4eb664559c387a8e81f33 /examples/nrf52840/src
parent026445d0109f9e80586634a757dfe39a58068cfc (diff)
parent5732ee7ca975c0dd1afa83ade1667a2599d20985 (diff)
Merge pull request #2872 from embassy-rs/cleanups
Misc cleanups.
Diffstat (limited to 'examples/nrf52840/src')
-rw-r--r--examples/nrf52840/src/bin/gpiote_channel.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nrf52840/src/bin/gpiote_channel.rs b/examples/nrf52840/src/bin/gpiote_channel.rs
index e254d613d..dcfe7723a 100644
--- a/examples/nrf52840/src/bin/gpiote_channel.rs
+++ b/examples/nrf52840/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}