Embassy
embassy-stm32

Crates

git

Versions

stm32c011d6

Flavors

pub unsafe trait InterruptExt: InterruptNumber + Copy {
    // Provided methods
    unsafe fn enable(self) { ... }
    fn disable(self) { ... }
    fn is_enabled(self) -> bool { ... }
    fn is_pending(self) -> bool { ... }
    fn pend(self) { ... }
    fn unpend(self) { ... }
    fn get_priority(self) -> Priority { ... }
    fn set_priority(self, prio: Priority) { ... }
    fn set_priority_with_cs(self, _cs: CriticalSection<'_>, prio: Priority) { ... }
}
Expand description

Represents an interrupt type that can be configured by embassy to handle interrupts.

Provided Methods§

source

unsafe fn enable(self)

Enable the interrupt.

source

fn disable(self)

Disable the interrupt.

source

fn is_enabled(self) -> bool

Check if interrupt is enabled.

source

fn is_pending(self) -> bool

Check if interrupt is pending.

source

fn pend(self)

Set interrupt pending.

source

fn unpend(self)

Unset interrupt pending.

source

fn get_priority(self) -> Priority

Get the priority of the interrupt.

source

fn set_priority(self, prio: Priority)

Set the interrupt priority.

source

fn set_priority_with_cs(self, _cs: CriticalSection<'_>, prio: Priority)

Set the interrupt priority with an already-acquired critical section

Equivalent to set_priority, except you pass a CriticalSection to prove you’ve already acquired a critical section. This prevents acquiring another one, which saves code size.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> InterruptExt for T
where T: InterruptNumber + Copy,