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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Start the watchdog"]
    pub tasks_start: TASKS_START,
    _reserved0: [u8; 252usize],
    #[doc = "0x100 - Watchdog timeout"]
    pub events_timeout: EVENTS_TIMEOUT,
    _reserved1: [u8; 512usize],
    #[doc = "0x304 - Enable interrupt"]
    pub intenset: INTENSET,
    #[doc = "0x308 - Disable interrupt"]
    pub intenclr: INTENCLR,
    _reserved2: [u8; 244usize],
    #[doc = "0x400 - Run status"]
    pub runstatus: RUNSTATUS,
    #[doc = "0x404 - Request status"]
    pub reqstatus: REQSTATUS,
    _reserved3: [u8; 252usize],
    #[doc = "0x504 - Counter reload value"]
    pub crv: CRV,
    #[doc = "0x508 - Enable register for reload request registers"]
    pub rren: RREN,
    #[doc = "0x50c - Configuration register"]
    pub config: CONFIG,
    _reserved4: [u8; 240usize],
    #[doc = "0x600 - Description collection\\[0\\]: Reload request 0"]
    pub rr: [RR; 8],
}
#[doc = "Start the watchdog"]
pub struct TASKS_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Start the watchdog"]
pub mod tasks_start;
#[doc = "Watchdog timeout"]
pub struct EVENTS_TIMEOUT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Watchdog timeout"]
pub mod events_timeout;
#[doc = "Enable interrupt"]
pub struct INTENSET {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Enable interrupt"]
pub mod intenset;
#[doc = "Disable interrupt"]
pub struct INTENCLR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Disable interrupt"]
pub mod intenclr;
#[doc = "Run status"]
pub struct RUNSTATUS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Run status"]
pub mod runstatus;
#[doc = "Request status"]
pub struct REQSTATUS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Request status"]
pub mod reqstatus;
#[doc = "Counter reload value"]
pub struct CRV {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Counter reload value"]
pub mod crv;
#[doc = "Enable register for reload request registers"]
pub struct RREN {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Enable register for reload request registers"]
pub mod rren;
#[doc = "Configuration register"]
pub struct CONFIG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Configuration register"]
pub mod config;
#[doc = "Description collection\\[0\\]: Reload request 0"]
pub struct RR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Description collection\\[0\\]: Reload request 0"]
pub mod rr;