aboutsummaryrefslogtreecommitdiff
path: root/src/interrupt.rs
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-11-07 10:07:33 -0800
committerFelipe Balbi <[email protected]>2025-11-07 10:08:16 -0800
commite75066820ad320495ca70570641c90d75247b19b (patch)
treeda2aeddb9164dbc2829b54185d1f180efbad6daf /src/interrupt.rs
parentcb2ac2790f4b037056f9571abeb4d62360199426 (diff)
cargo +nightly fmt
Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'src/interrupt.rs')
-rw-r--r--src/interrupt.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interrupt.rs b/src/interrupt.rs
index d91e6479a..09d7acbef 100644
--- a/src/interrupt.rs
+++ b/src/interrupt.rs
@@ -6,11 +6,11 @@ mod generated {
6 embassy_hal_internal::interrupt_mod!(OS_EVENT, LPUART2, RTC, ADC1); 6 embassy_hal_internal::interrupt_mod!(OS_EVENT, LPUART2, RTC, ADC1);
7} 7}
8 8
9pub use generated::interrupt::Priority; 9use core::sync::atomic::{AtomicU16, AtomicU32, Ordering};
10pub use generated::interrupt::typelevel; 10
11pub use generated::interrupt::{typelevel, Priority};
11 12
12use crate::pac::Interrupt; 13use crate::pac::Interrupt;
13use core::sync::atomic::{AtomicU16, AtomicU32, Ordering};
14 14
15/// Trait for configuring and controlling interrupts. 15/// Trait for configuring and controlling interrupts.
16/// 16///