aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-stm32/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs
index af7ef9fe0..b0bc7ffbb 100644
--- a/embassy-stm32/src/lib.rs
+++ b/embassy-stm32/src/lib.rs
@@ -213,6 +213,7 @@ macro_rules! bind_interrupts {
213 213
214// Reexports 214// Reexports
215pub use _generated::{peripherals, Peripherals}; 215pub use _generated::{peripherals, Peripherals};
216use critical_section::CriticalSection;
216pub use embassy_hal_internal::{Peri, PeripheralType}; 217pub use embassy_hal_internal::{Peri, PeripheralType};
217#[cfg(feature = "unstable-pac")] 218#[cfg(feature = "unstable-pac")]
218pub use stm32_metapac as pac; 219pub use stm32_metapac as pac;
@@ -222,7 +223,6 @@ pub(crate) use stm32_metapac as pac;
222use crate::interrupt::Priority; 223use crate::interrupt::Priority;
223#[cfg(feature = "rt")] 224#[cfg(feature = "rt")]
224pub use crate::pac::NVIC_PRIO_BITS; 225pub use crate::pac::NVIC_PRIO_BITS;
225use critical_section::CriticalSection;
226 226
227/// `embassy-stm32` global configuration. 227/// `embassy-stm32` global configuration.
228#[non_exhaustive] 228#[non_exhaustive]