Struct stm32f103xx::NVIC

source ·
pub struct NVIC { /* private fields */ }
Expand description

Nested Vector Interrupt Controller

Implementations

👎Deprecated since 0.5.8: Use NVIC::unpend

Clears interrupt’s pending state

Disables interrupt

Enables interrupt

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

Returns a pointer to the register block

Trait Implementations

The resulting type after dereferencing.
Dereferences the value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.