1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - memory remap register"]
    pub memrm: MEMRM,
    #[doc = "0x04 - peripheral mode configuration register"]
    pub pmc: PMC,
    #[doc = "0x08 - external interrupt configuration register 1"]
    pub exticr1: EXTICR1,
    #[doc = "0x0c - external interrupt configuration register 2"]
    pub exticr2: EXTICR2,
    #[doc = "0x10 - external interrupt configuration register 3"]
    pub exticr3: EXTICR3,
    #[doc = "0x14 - external interrupt configuration register 4"]
    pub exticr4: EXTICR4,
    _reserved0: [u8; 8usize],
    #[doc = "0x20 - Compensation cell control register"]
    pub cmpcr: CMPCR,
}
#[doc = "memory remap register"]
pub struct MEMRM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "memory remap register"]
pub mod memrm;
#[doc = "peripheral mode configuration register"]
pub struct PMC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "peripheral mode configuration register"]
pub mod pmc;
#[doc = "external interrupt configuration register 1"]
pub struct EXTICR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "external interrupt configuration register 1"]
pub mod exticr1;
#[doc = "external interrupt configuration register 2"]
pub struct EXTICR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "external interrupt configuration register 2"]
pub mod exticr2;
#[doc = "external interrupt configuration register 3"]
pub struct EXTICR3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "external interrupt configuration register 3"]
pub mod exticr3;
#[doc = "external interrupt configuration register 4"]
pub struct EXTICR4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "external interrupt configuration register 4"]
pub mod exticr4;
#[doc = "Compensation cell control register"]
pub struct CMPCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Compensation cell control register"]
pub mod cmpcr;