Struct atsam4lc2c_pac::NVIC

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

Nested Vector Interrupt Controller

Implementations§

source§

impl NVIC

source

pub fn request<I>(&mut self, interrupt: I)where I: InterruptNumber,

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 NVIC::pend.

This method is not available on ARMv6-M chips.

source

pub fn mask<I>(interrupt: I)where I: InterruptNumber,

Disables interrupt

source

pub unsafe fn unmask<I>(interrupt: I)where I: InterruptNumber,

Enables interrupt

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

source

pub fn get_priority<I>(interrupt: I) -> u8where I: InterruptNumber,

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).

source

pub fn is_active<I>(interrupt: I) -> boolwhere I: InterruptNumber,

Is interrupt active or pre-empted and stacked

source

pub fn is_enabled<I>(interrupt: I) -> boolwhere I: InterruptNumber,

Checks if interrupt is enabled

source

pub fn is_pending<I>(interrupt: I) -> boolwhere I: InterruptNumber,

Checks if interrupt is pending

source

pub fn pend<I>(interrupt: I)where I: InterruptNumber,

Forces interrupt into pending state

source

pub unsafe fn set_priority<I>(&mut self, interrupt: I, prio: u8)where I: InterruptNumber,

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.

source

pub fn unpend<I>(interrupt: I)where I: InterruptNumber,

Clears interrupt’s pending state

source§

impl NVIC

source

pub const PTR: *const RegisterBlock = {0xe000e100 as *const cortex_m::peripheral::nvic::RegisterBlock}

Pointer to the register block

source

pub const fn ptr() -> *const RegisterBlock

👎Deprecated since 0.7.5: Use the associated constant PTR instead

Returns a pointer to the register block

Trait Implementations§

source§

impl Deref for NVIC

§

type Target = RegisterBlock

The resulting type after dereferencing.
source§

fn deref(&self) -> &<NVIC as Deref>::Target

Dereferences the value.
source§

impl Send for NVIC

Auto Trait Implementations§

§

impl RefUnwindSafe for NVIC

§

impl !Sync for NVIC

§

impl Unpin for NVIC

§

impl UnwindSafe for NVIC

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.