pub enum EIC {}
Expand description
EIC typelevel interrupt.
Trait Implementations§
Source§impl Handler<EIC> for InterruptHandler
impl Handler<EIC> for InterruptHandler
Source§unsafe fn on_interrupt()
unsafe fn on_interrupt()
Interrupt handler function. Read more
Source§impl Interrupt for EIC
impl Interrupt for EIC
Source§fn is_enabled() -> bool
fn is_enabled() -> bool
Check if interrupt is enabled.
Source§fn is_pending() -> bool
fn is_pending() -> bool
Check if interrupt is pending.
Source§fn get_priority() -> Priority
fn get_priority() -> Priority
Get the priority of the interrupt.
Source§fn set_priority(prio: Priority)
fn set_priority(prio: Priority)
Set the interrupt priority.
Source§fn set_priority_with_cs(cs: CriticalSection<'_>, prio: Priority)
fn set_priority_with_cs(cs: CriticalSection<'_>, prio: Priority)
Set the interrupt priority with an already-acquired critical section. Read more
impl SingleInterruptSource for EIC
Auto Trait Implementations§
impl Freeze for EIC
impl RefUnwindSafe for EIC
impl Send for EIC
impl Sync for EIC
impl Unpin for EIC
impl UnwindSafe for EIC
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