diff --git a/src/utils/asyncify/timer.rs b/src/utils/asyncify/timer.rs index a89837f..91e4ea0 100644 --- a/src/utils/asyncify/timer.rs +++ b/src/utils/asyncify/timer.rs @@ -237,7 +237,7 @@ mod async_traits_impl { impl embedded_hal_async::delay::DelayUs for AsyncTimer where - T: crate::timer::OnceTimer + Send + 'static, + T: crate::timer::OnceTimer + Send, { async fn delay_us(&mut self, us: u32) { AsyncTimer::after(self, Duration::from_micros(us as _))