[][src]Struct cortex_m::peripheral::NVIC

pub struct NVIC { /* fields omitted */ }

Nested Vector Interrupt Controller

Methods

impl NVIC
[src]

Request an IRQ in software

Writing a value to the INTID field is the same as manually pending an interrupt by setting the corresponding interrupt bit in an Interrupt Set Pending Register. This is similar to set_pending.

This method is not available on ARMv6-M chips.

Deprecated since 0.5.8

: Use NVIC::unpend

Clears interrupt's pending state

Disables interrupt

Enables interrupt

This function is unsafe because it can break mask-based critical sections

Deprecated since 0.6.1

: Use NVIC::mask

Disables interrupt

Deprecated since 0.6.1

: Use NVIC::unmask

WARNING This method is a soundness hole in the API; it should actually be an unsafe function. Use NVIC::unmask which has the right unsafety.

Returns the NVIC priority of interrupt

NOTE NVIC encodes priority in the highest bits of a byte so values like 1 and 2 map to the same priority. Also for NVIC priorities, a lower value (e.g. 16) has higher priority (urgency) than a larger value (e.g. 32).

Is interrupt active or pre-empted and stacked

Checks if interrupt is enabled

Checks if interrupt is pending

Forces interrupt into pending state

Deprecated since 0.5.8

: Use NVIC::pend

Forces interrupt into pending state

Sets the "priority" of interrupt to prio

NOTE See get_priority method for an explanation of how NVIC priorities work.

On ARMv6-M, updating an interrupt priority requires a read-modify-write operation. On ARMv7-M, the operation is performed in a single atomic write operation.

Unsafety

Changing priority levels can break priority-based critical sections (see register::basepri) and compromise memory safety.

Clears interrupt's pending state

impl NVIC
[src]

Returns a pointer to the register block

Trait Implementations

impl Deref for NVIC
[src]

The resulting type after dereferencing.

impl Send for NVIC
[src]

Auto Trait Implementations

impl !Sync for NVIC

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T
[src]

Should always be Self