Skip to content

Commit da39f95

Browse files
committed
Reexport Interrupt enum as InterruptRequest
1 parent a6841ee commit da39f95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interrupts/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ use core::intrinsics::transmute;
2323
use core::marker::PhantomData;
2424
use core::{fmt, ptr};
2525
use rt::exception;
26-
use stm32f7::stm32f7x6::{Interrupt as InterruptRequest, NVIC, NVIC_STIR};
26+
use stm32f7::stm32f7x6::{NVIC, NVIC_STIR};
27+
pub use stm32f7::stm32f7x6::Interrupt as InterruptRequest;
2728

2829
pub mod primask_mutex;
2930

0 commit comments

Comments
 (0)