[][src]Enum stm32wl::stm32wle5::Interrupt

#[repr(u8)]pub enum Interrupt {
    WWDG,
    PVD,
    TAMP_RTC_STAMP_LSECSS_SSRU,
    RTC_WKUP,
    FLASH,
    RCC,
    EXTI0,
    EXTI1,
    EXTI2,
    EXTI3,
    EXTI4,
    DMA1_CHANNEL1,
    DMA1_CHANNEL2,
    DMA1_CHANNEL3,
    DMA1_CHANNEL4,
    DMA1_CHANNEL5,
    DMA1_CHANNEL6,
    DMA1_CHANNEL7,
    ADC1,
    DAC,
    COMP,
    EXTI9_5,
    TIM1_BRK,
    TIM1_UP,
    TIM1_TRG_COM,
    TIM1_CC,
    TIM2,
    TIM16,
    TIM17,
    I2C1_EV,
    I2C1_ER,
    I2C2_EV,
    I2C2_ER,
    SPI1,
    SPI2,
    USART1,
    USART2,
    LPUART1,
    LPTIM1,
    LPTIM2,
    EXTI15_10,
    RTC_ALARM,
    LPTIM3,
    SPI3,
    HSEM,
    I2C3_EV,
    I2C3_ER,
    RADIO_BUSY,
    AES,
    TRUE_RNG,
    PKA,
    DMA2_CH1,
    DMA2_CH2,
    DMA2_CH3,
    DMA2_CH4,
    DMA2_CH5,
    DMA2_CH6,
    DMA2_CH7,
    DMAMUX_OVR,
}

Enumeration of all the interrupts

Variants

WWDG

0 - Window Watchdog interrupt

PVD

1 - PVD through EXTI

TAMP_RTC_STAMP_LSECSS_SSRU

2 - Tamper, TimeStamp, LSECSS interrupt through

RTC_WKUP

3 - RTC wakeup interrupt through EXTI[19]

FLASH

4 - Flash memory global interrupt and Flash memory ECC

RCC

5 - RCC global interrupt

EXTI0

6 - EXTI line 0 interrupt through EXTI

EXTI1

7 - EXTI line 1 interrupt through EXTI

EXTI2

8 - EXTI line 2 interrupt through EXTI

EXTI3

9 - EXTI line 3 interrupt through EXTI

EXTI4

10 - EXTI line 4 interrupt through EXTI

DMA1_CHANNEL1

11 - DMA1 Channel1 global interrupt

DMA1_CHANNEL2

12 - DMA1 Channel2 global interrupt

DMA1_CHANNEL3

13 - DMA1 Channel3 interrupt

DMA1_CHANNEL4

14 - DMA1 Channel4 interrupt

DMA1_CHANNEL5

15 - DMA1 Channel5 interrupt

DMA1_CHANNEL6

16 - DMA1 Channel6 interrupt

DMA1_CHANNEL7

17 - DMA1 Channel 7 interrupt

ADC1

18 - ADC1 global interrupt

DAC

19 - DAC global interrupt

COMP

21 - COMP2 and COMP1 interrupt through

EXTI9_5

22 - EXTI line 9_5 interrupt through EXTI

TIM1_BRK

23 - Timer 1 break interrupt

TIM1_UP

24 - Timer 1 Update

TIM1_TRG_COM

25 - Timer 1 trigger and communication

TIM1_CC

26 - Timer 1 capture compare interrupt

TIM2

27 - TIM2 global interrupt

TIM16

28 - Timer 16 global interrupt

TIM17

29 - Timer 17 global interrupt

I2C1_EV

30 - I2C1 event interrupt

I2C1_ER

31 - I2C1 event interrupt

I2C2_EV

32 - I2C2 error interrupt

I2C2_ER

33 - I2C2 error interrupt

SPI1

34 - SPI 1 global interrupt

SPI2

35 - SPI2 global interrupt

USART1

36 - USART1 global interrupt

USART2

37 - USART2 global interrupt

LPUART1

38 - LPUART1 global interrupt

LPTIM1

39 - LPtimer 1 global interrupt

LPTIM2

40 - LPtimer 2 global interrupt

EXTI15_10

41 - EXTI line 15_10] interrupt through EXTI

RTC_ALARM

42 - RTC Alarms A & B interrupt

LPTIM3

43 - LPtimer 3 global interrupt

SPI3

44 - SPI3 global interrupt

HSEM

47 - Semaphore interrupt 0 to CPU1

I2C3_EV

48 - I2C3 event interrupt

I2C3_ER

49 - I2C3 error interrupt

RADIO_BUSY

50 - Radio IRQs RFBUSY interrupt through EXTI

AES

51 - AES global interrupt

TRUE_RNG

52 - True random number generator interrupt

PKA

53 - Private key accelerator interrupt

DMA2_CH1

54 - DMA2 channel 1 interrupt

DMA2_CH2

55 - DMA2 channel 2 interrupt

DMA2_CH3

56 - DMA2 channel 3 interrupt

DMA2_CH4

57 - DMA2 channel 4 interrupt

DMA2_CH5

58 - DMA2 channel 5 interrupt

DMA2_CH6

59 - DMA2 channel 6 interrupt

DMA2_CH7

60 - DMA2 channel 7 interrupt

DMAMUX_OVR

61 - DMAMUX overrun interrupt

Trait Implementations

impl Clone for Interrupt[src]

impl Copy for Interrupt[src]

impl Debug for Interrupt[src]

impl Nr for Interrupt[src]

Auto Trait Implementations

impl Send for Interrupt

impl Sync for Interrupt

impl Unpin for Interrupt

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.