#[repr(u16)]
pub enum Interrupt {
Show 43 variants POWER_CLOCK = 0, RADIO = 1, UARTE0_UART0 = 2, SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0 = 3, SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1 = 4, NFCT = 5, GPIOTE = 6, SAADC = 7, TIMER0 = 8, TIMER1 = 9, TIMER2 = 10, RTC0 = 11, TEMP = 12, RNG = 13, ECB = 14, CCM_AAR = 15, WDT = 16, RTC1 = 17, QDEC = 18, COMP_LPCOMP = 19, SWI0_EGU0 = 20, SWI1_EGU1 = 21, SWI2_EGU2 = 22, SWI3_EGU3 = 23, SWI4_EGU4 = 24, SWI5_EGU5 = 25, TIMER3 = 26, TIMER4 = 27, PWM0 = 28, PDM = 29, MWU = 32, PWM1 = 33, PWM2 = 34, SPIM2_SPIS2_SPI2 = 35, RTC2 = 36, I2S = 37, FPU = 38, USBD = 39, UARTE1 = 40, QSPI = 41, CRYPTOCELL = 42, PWM3 = 45, SPIM3 = 47,
}
Expand description

Enumeration of all the interrupts.

Variants§

§

POWER_CLOCK = 0

0 - POWER_CLOCK

§

RADIO = 1

1 - RADIO

§

UARTE0_UART0 = 2

2 - UARTE0_UART0

§

SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0 = 3

3 - SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0

§

SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1 = 4

4 - SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1

§

NFCT = 5

5 - NFCT

§

GPIOTE = 6

6 - GPIOTE

§

SAADC = 7

7 - SAADC

§

TIMER0 = 8

8 - TIMER0

§

TIMER1 = 9

9 - TIMER1

§

TIMER2 = 10

10 - TIMER2

§

RTC0 = 11

11 - RTC0

§

TEMP = 12

12 - TEMP

§

RNG = 13

13 - RNG

§

ECB = 14

14 - ECB

§

CCM_AAR = 15

15 - CCM_AAR

§

WDT = 16

16 - WDT

§

RTC1 = 17

17 - RTC1

§

QDEC = 18

18 - QDEC

§

COMP_LPCOMP = 19

19 - COMP_LPCOMP

§

SWI0_EGU0 = 20

20 - SWI0_EGU0

§

SWI1_EGU1 = 21

21 - SWI1_EGU1

§

SWI2_EGU2 = 22

22 - SWI2_EGU2

§

SWI3_EGU3 = 23

23 - SWI3_EGU3

§

SWI4_EGU4 = 24

24 - SWI4_EGU4

§

SWI5_EGU5 = 25

25 - SWI5_EGU5

§

TIMER3 = 26

26 - TIMER3

§

TIMER4 = 27

27 - TIMER4

§

PWM0 = 28

28 - PWM0

§

PDM = 29

29 - PDM

§

MWU = 32

32 - MWU

§

PWM1 = 33

33 - PWM1

§

PWM2 = 34

34 - PWM2

§

SPIM2_SPIS2_SPI2 = 35

35 - SPIM2_SPIS2_SPI2

§

RTC2 = 36

36 - RTC2

§

I2S = 37

37 - I2S

§

FPU = 38

38 - FPU

§

USBD = 39

39 - USBD

§

UARTE1 = 40

40 - UARTE1

§

QSPI = 41

41 - QSPI

§

CRYPTOCELL = 42

42 - CRYPTOCELL

§

PWM3 = 45

45 - PWM3

§

SPIM3 = 47

47 - SPIM3

Trait Implementations§

source§

impl Clone for Interrupt

source§

fn clone(&self) -> Interrupt

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Interrupt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl InterruptNumber for Interrupt

source§

fn number(self) -> u16

Return the interrupt number associated with this variant. Read more
source§

impl PartialEq for Interrupt

source§

fn eq(&self, other: &Interrupt) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Interrupt

source§

impl Eq for Interrupt

source§

impl StructuralEq for Interrupt

source§

impl StructuralPartialEq for Interrupt

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

unsafe fn enable(self)

Enable the interrupt.
source§

fn disable(self)

Disable the interrupt.
source§

fn is_active(self) -> bool

Check if interrupt is being handled.
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 Read more
source§

impl<T, U> Into<U> for T
where 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<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.