pub enum InterruptSources {
Interrupt0 = 0,
Interrupt1 = 1,
Interrupt2 = 2,
Interrupt3 = 3,
Sm0TXNotFull = 4,
Sm1TXNotFull = 5,
Sm2TXNotFull = 6,
Sm3TXNotFull = 7,
Sm0RXNotEmpty = 8,
Sm1RXNotEmpty = 9,
Sm2RXNotEmpty = 10,
Sm3RXNotEmpty = 11,
}
Expand description
PIO interrupt source numbers for PIO related interrupts
Variants§
Interrupt0 = 0
Interrupt1 = 1
Interrupt2 = 2
Interrupt3 = 3
Sm0TXNotFull = 4
Sm1TXNotFull = 5
Sm2TXNotFull = 6
Sm3TXNotFull = 7
Sm0RXNotEmpty = 8
Sm1RXNotEmpty = 9
Sm2RXNotEmpty = 10
Sm3RXNotEmpty = 11
Trait Implementations§
Source§impl PartialEq for InterruptSources
impl PartialEq for InterruptSources
impl StructuralPartialEq for InterruptSources
Auto Trait Implementations§
impl Freeze for InterruptSources
impl RefUnwindSafe for InterruptSources
impl Send for InterruptSources
impl Sync for InterruptSources
impl Unpin for InterruptSources
impl UnwindSafe for InterruptSources
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more