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
62
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - System Reset Status Register 0"]
    pub srs0: SRS0,
    #[doc = "0x01 - System Reset Status Register 1"]
    pub srs1: SRS1,
    _reserved0: [u8; 2usize],
    #[doc = "0x04 - Reset Pin Filter Control register"]
    pub rpfc: RPFC,
    #[doc = "0x05 - Reset Pin Filter Width register"]
    pub rpfw: RPFW,
    _reserved1: [u8; 1usize],
    #[doc = "0x07 - Mode Register"]
    pub mr: MR,
    #[doc = "0x08 - Sticky System Reset Status Register 0"]
    pub ssrs0: SSRS0,
    #[doc = "0x09 - Sticky System Reset Status Register 1"]
    pub ssrs1: SSRS1,
}
#[doc = "System Reset Status Register 0"]
pub struct SRS0 {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "System Reset Status Register 0"]
pub mod srs0;
#[doc = "System Reset Status Register 1"]
pub struct SRS1 {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "System Reset Status Register 1"]
pub mod srs1;
#[doc = "Reset Pin Filter Control register"]
pub struct RPFC {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "Reset Pin Filter Control register"]
pub mod rpfc;
#[doc = "Reset Pin Filter Width register"]
pub struct RPFW {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "Reset Pin Filter Width register"]
pub mod rpfw;
#[doc = "Mode Register"]
pub struct MR {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "Mode Register"]
pub mod mr;
#[doc = "Sticky System Reset Status Register 0"]
pub struct SSRS0 {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "Sticky System Reset Status Register 0"]
pub mod ssrs0;
#[doc = "Sticky System Reset Status Register 1"]
pub struct SSRS1 {
    register: ::vcell::VolatileCell<u8>,
}
#[doc = "Sticky System Reset Status Register 1"]
pub mod ssrs1;