From d113772136548e2bb50cecf1749f73bef72a0fe9 Mon Sep 17 00:00:00 2001 From: xoviat Date: Thu, 18 Dec 2025 07:00:59 -0600 Subject: stm32: cleanup low-power features --- embassy-stm32/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'embassy-stm32/src/lib.rs') diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs index 2f783bf64..a0b2f045c 100644 --- a/embassy-stm32/src/lib.rs +++ b/embassy-stm32/src/lib.rs @@ -138,6 +138,9 @@ pub mod wdg; #[cfg(xspi)] pub mod xspi; +#[cfg(feature = "low-power")] +pub use low_power::Executor; + // This must go last, so that it sees all the impl_foo! macros defined earlier. pub(crate) mod _generated { #![allow(dead_code)] -- cgit