embassy-stm32

Crates

git

Versions

stm32wba50kg

Flavors

๐Ÿ“ฃ We want to hear from you! Fill the Rust Embedded 2024 micro-survey.

Enum embassy_stm32::interrupt::Interrupt

pub enum Interrupt {
Show 55 variants WWDG = 0, PVD = 1, RTC = 2, TAMP = 4, RAMCFG = 5, FLASH = 6, RCC = 9, EXTI0 = 11, EXTI1 = 12, EXTI2 = 13, EXTI3 = 14, EXTI4 = 15, EXTI5 = 16, EXTI6 = 17, EXTI7 = 18, EXTI8 = 19, EXTI9 = 20, EXTI10 = 21, EXTI11 = 22, EXTI12 = 23, EXTI13 = 24, EXTI14 = 25, EXTI15 = 26, IWDG = 27, GPDMA1_CHANNEL0 = 29, GPDMA1_CHANNEL1 = 30, GPDMA1_CHANNEL2 = 31, GPDMA1_CHANNEL3 = 32, GPDMA1_CHANNEL4 = 33, GPDMA1_CHANNEL5 = 34, GPDMA1_CHANNEL6 = 35, GPDMA1_CHANNEL7 = 36, TIM1_BRK = 37, TIM1_UP = 38, TIM1_TRG_COM = 39, TIM1_CC = 40, TIM2 = 41, USART1 = 46, LPUART1 = 48, LPTIM1 = 49, TIM16 = 51, I2C3_EV = 54, I2C3_ER = 55, TSC = 57, AES = 58, RNG = 59, FPU = 60, HASH = 61, PKA = 62, SPI3 = 63, ICACHE = 64, ADC4 = 65, RADIO = 66, WKUP = 67, HSEM = 68,
}

Variantsยง

ยง

WWDG = 0

0 - WWDG

ยง

PVD = 1

1 - PVD

ยง

RTC = 2

2 - RTC

ยง

TAMP = 4

4 - TAMP

ยง

RAMCFG = 5

5 - RAMCFG

ยง

FLASH = 6

6 - FLASH

ยง

RCC = 9

9 - RCC

ยง

EXTI0 = 11

11 - EXTI0

ยง

EXTI1 = 12

12 - EXTI1

ยง

EXTI2 = 13

13 - EXTI2

ยง

EXTI3 = 14

14 - EXTI3

ยง

EXTI4 = 15

15 - EXTI4

ยง

EXTI5 = 16

16 - EXTI5

ยง

EXTI6 = 17

17 - EXTI6

ยง

EXTI7 = 18

18 - EXTI7

ยง

EXTI8 = 19

19 - EXTI8

ยง

EXTI9 = 20

20 - EXTI9

ยง

EXTI10 = 21

21 - EXTI10

ยง

EXTI11 = 22

22 - EXTI11

ยง

EXTI12 = 23

23 - EXTI12

ยง

EXTI13 = 24

24 - EXTI13

ยง

EXTI14 = 25

25 - EXTI14

ยง

EXTI15 = 26

26 - EXTI15

ยง

IWDG = 27

27 - IWDG

ยง

GPDMA1_CHANNEL0 = 29

29 - GPDMA1_CHANNEL0

ยง

GPDMA1_CHANNEL1 = 30

30 - GPDMA1_CHANNEL1

ยง

GPDMA1_CHANNEL2 = 31

31 - GPDMA1_CHANNEL2

ยง

GPDMA1_CHANNEL3 = 32

32 - GPDMA1_CHANNEL3

ยง

GPDMA1_CHANNEL4 = 33

33 - GPDMA1_CHANNEL4

ยง

GPDMA1_CHANNEL5 = 34

34 - GPDMA1_CHANNEL5

ยง

GPDMA1_CHANNEL6 = 35

35 - GPDMA1_CHANNEL6

ยง

GPDMA1_CHANNEL7 = 36

36 - GPDMA1_CHANNEL7

ยง

TIM1_BRK = 37

37 - TIM1_BRK

ยง

TIM1_UP = 38

38 - TIM1_UP

ยง

TIM1_TRG_COM = 39

39 - TIM1_TRG_COM

ยง

TIM1_CC = 40

40 - TIM1_CC

ยง

TIM2 = 41

41 - TIM2

ยง

USART1 = 46

46 - USART1

ยง

LPUART1 = 48

48 - LPUART1

ยง

LPTIM1 = 49

49 - LPTIM1

ยง

TIM16 = 51

51 - TIM16

ยง

I2C3_EV = 54

54 - I2C3_EV

ยง

I2C3_ER = 55

55 - I2C3_ER

ยง

TSC = 57

57 - TSC

ยง

AES = 58

58 - AES

ยง

RNG = 59

59 - RNG

ยง

FPU = 60

60 - FPU

ยง

HASH = 61

61 - HASH

ยง

PKA = 62

62 - PKA

ยง

SPI3 = 63

63 - SPI3

ยง

ICACHE = 64

64 - ICACHE

ยง

ADC4 = 65

65 - ADC4

ยง

RADIO = 66

66 - RADIO

ยง

WKUP = 67

67 - WKUP

ยง

HSEM = 68

68 - HSEM

Trait Implementationsยง

ยง

impl Clone for Interrupt

ยง

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
ยง

impl Debug for Interrupt

ยง

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

Formats the value using the given formatter. Read more
ยง

impl InterruptNumber for Interrupt

ยง

fn number(self) -> u16

Return the interrupt number associated with this variant. Read more
ยง

impl PartialEq for Interrupt

ยง

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท sourceยง

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
ยง

impl Copy for Interrupt

ยง

impl Eq for Interrupt

ยง

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> 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<T> CloneToUninit for T
where T: Clone,

sourceยง

unsafe fn clone_to_uninit(&self, dst: *mut T)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
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<T, U> TryFrom<U> for T
where U: Into<T>,

sourceยง

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>,

sourceยง

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.