Struct stm32g0::stm32g041::exti::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub rtsr1: RTSR1,
    pub ftsr1: FTSR1,
    pub swier1: SWIER1,
    pub rpr1: RPR1,
    pub fpr1: FPR1,
    pub exticr1: EXTICR1,
    pub exticr2: EXTICR2,
    pub exticr3: EXTICR3,
    pub exticr4: EXTICR4,
    pub imr1: IMR1,
    pub emr1: EMR1,
    // some fields omitted
}

Register block

Fields

rtsr1: RTSR1

0x00 - EXTI rising trigger selection register

ftsr1: FTSR1

0x04 - EXTI falling trigger selection register

swier1: SWIER1

0x08 - EXTI software interrupt event register

rpr1: RPR1

0x0c - EXTI rising edge pending register

fpr1: FPR1

0x10 - EXTI falling edge pending register

exticr1: EXTICR1

0x60 - EXTI external interrupt selection register

exticr2: EXTICR2

0x64 - EXTI external interrupt selection register

exticr3: EXTICR3

0x68 - EXTI external interrupt selection register

exticr4: EXTICR4

0x6c - EXTI external interrupt selection register

imr1: IMR1

0x80 - EXTI CPU wakeup with interrupt mask register

emr1: EMR1

0x84 - EXTI CPU wakeup with event mask register

Auto Trait Implementations

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