From 112350ed0ccf9aeaa7425d90ffb5435d9ba4e229 Mon Sep 17 00:00:00 2001 From: neema-orual Date: Sun, 3 Mar 2024 16:59:20 -0500 Subject: [PATCH] Once more --- embedded-hal-ext/src/digital.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-hal-ext/src/digital.rs b/embedded-hal-ext/src/digital.rs index 7eecffb..9a89364 100644 --- a/embedded-hal-ext/src/digital.rs +++ b/embedded-hal-ext/src/digital.rs @@ -307,7 +307,7 @@ impl Event for &mut T { #[cfg(feature = "async")] #[inline] async fn wait_for(self: &mut Self, event: PinEvent) -> Result { - T::wait_for(event) + T::wait_for(self, event).await } }