aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32
diff options
context:
space:
mode:
authorMichael Medin <[email protected]>2025-04-24 10:57:02 +0200
committerMichael Medin <[email protected]>2025-04-24 10:57:02 +0200
commit8661b019e609f50bd78067cc49c65a4babfead00 (patch)
tree9cc6aee86eb1c9aaa4227556458a8d38c32bdb5c /embassy-stm32
parentb2c32a947ea724facb75f81978dfb5d3ca331ddb (diff)
Fixed formatting
Diffstat (limited to 'embassy-stm32')
-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]