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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#[doc = "Register `ALRM0TD` reader"]
pub type R = crate::R<Alrm0tdSpec>;
#[doc = "Register `ALRM0TD` writer"]
pub type W = crate::W<Alrm0tdSpec>;
#[doc = "Field `SCU` reader - Second units in BCD code"]
pub type ScuR = crate::FieldReader;
#[doc = "Field `SCU` writer - Second units in BCD code"]
pub type ScuW<'a, REG> = crate::FieldWriter<'a, REG, 4>;
#[doc = "Field `SCT` reader - Second tens in BCD code"]
pub type SctR = crate::FieldReader;
#[doc = "Field `SCT` writer - Second tens in BCD code"]
pub type SctW<'a, REG> = crate::FieldWriter<'a, REG, 3>;
#[doc = "Field `MSKS` reader - Alarm second mask bit"]
pub type MsksR = crate::BitReader;
#[doc = "Field `MSKS` writer - Alarm second mask bit"]
pub type MsksW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MNU` reader - Minutes units in BCD code"]
pub type MnuR = crate::FieldReader;
#[doc = "Field `MNU` writer - Minutes units in BCD code"]
pub type MnuW<'a, REG> = crate::FieldWriter<'a, REG, 4>;
#[doc = "Field `MNT` reader - Minutes tens in BCD code"]
pub type MntR = crate::FieldReader;
#[doc = "Field `MNT` writer - Minutes tens in BCD code"]
pub type MntW<'a, REG> = crate::FieldWriter<'a, REG, 3>;
#[doc = "Field `MSKM` reader - Alarm minutes mask bit"]
pub type MskmR = crate::BitReader;
#[doc = "Field `MSKM` writer - Alarm minutes mask bit"]
pub type MskmW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `HRU` reader - Hour units in BCD code"]
pub type HruR = crate::FieldReader;
#[doc = "Field `HRU` writer - Hour units in BCD code"]
pub type HruW<'a, REG> = crate::FieldWriter<'a, REG, 4>;
#[doc = "Field `HRT` reader - Hour tens in BCD code"]
pub type HrtR = crate::FieldReader;
#[doc = "Field `HRT` writer - Hour tens in BCD code"]
pub type HrtW<'a, REG> = crate::FieldWriter<'a, REG, 2>;
#[doc = "Field `PM` reader - AM/PM flag"]
pub type PmR = crate::BitReader;
#[doc = "Field `PM` writer - AM/PM flag"]
pub type PmW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MSKH` reader - Alarm hour mask bit"]
pub type MskhR = crate::BitReader;
#[doc = "Field `MSKH` writer - Alarm hour mask bit"]
pub type MskhW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DAYU` reader - Date units or week day in BCD code"]
pub type DayuR = crate::FieldReader;
#[doc = "Field `DAYU` writer - Date units or week day in BCD code"]
pub type DayuW<'a, REG> = crate::FieldWriter<'a, REG, 4>;
#[doc = "Field `DAYT` reader - Date tens in BCD code"]
pub type DaytR = crate::FieldReader;
#[doc = "Field `DAYT` writer - Date tens in BCD code"]
pub type DaytW<'a, REG> = crate::FieldWriter<'a, REG, 2>;
#[doc = "Field `DOWS` reader - Day of the week selected"]
pub type DowsR = crate::BitReader;
#[doc = "Field `DOWS` writer - Day of the week selected"]
pub type DowsW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MSKD` reader - Alarm date mask bit"]
pub type MskdR = crate::BitReader;
#[doc = "Field `MSKD` writer - Alarm date mask bit"]
pub type MskdW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bits 0:3 - Second units in BCD code"]
    #[inline(always)]
    pub fn scu(&self) -> ScuR {
        ScuR::new((self.bits & 0x0f) as u8)
    }
    #[doc = "Bits 4:6 - Second tens in BCD code"]
    #[inline(always)]
    pub fn sct(&self) -> SctR {
        SctR::new(((self.bits >> 4) & 7) as u8)
    }
    #[doc = "Bit 7 - Alarm second mask bit"]
    #[inline(always)]
    pub fn msks(&self) -> MsksR {
        MsksR::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bits 8:11 - Minutes units in BCD code"]
    #[inline(always)]
    pub fn mnu(&self) -> MnuR {
        MnuR::new(((self.bits >> 8) & 0x0f) as u8)
    }
    #[doc = "Bits 12:14 - Minutes tens in BCD code"]
    #[inline(always)]
    pub fn mnt(&self) -> MntR {
        MntR::new(((self.bits >> 12) & 7) as u8)
    }
    #[doc = "Bit 15 - Alarm minutes mask bit"]
    #[inline(always)]
    pub fn mskm(&self) -> MskmR {
        MskmR::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bits 16:19 - Hour units in BCD code"]
    #[inline(always)]
    pub fn hru(&self) -> HruR {
        HruR::new(((self.bits >> 16) & 0x0f) as u8)
    }
    #[doc = "Bits 20:21 - Hour tens in BCD code"]
    #[inline(always)]
    pub fn hrt(&self) -> HrtR {
        HrtR::new(((self.bits >> 20) & 3) as u8)
    }
    #[doc = "Bit 22 - AM/PM flag"]
    #[inline(always)]
    pub fn pm(&self) -> PmR {
        PmR::new(((self.bits >> 22) & 1) != 0)
    }
    #[doc = "Bit 23 - Alarm hour mask bit"]
    #[inline(always)]
    pub fn mskh(&self) -> MskhR {
        MskhR::new(((self.bits >> 23) & 1) != 0)
    }
    #[doc = "Bits 24:27 - Date units or week day in BCD code"]
    #[inline(always)]
    pub fn dayu(&self) -> DayuR {
        DayuR::new(((self.bits >> 24) & 0x0f) as u8)
    }
    #[doc = "Bits 28:29 - Date tens in BCD code"]
    #[inline(always)]
    pub fn dayt(&self) -> DaytR {
        DaytR::new(((self.bits >> 28) & 3) as u8)
    }
    #[doc = "Bit 30 - Day of the week selected"]
    #[inline(always)]
    pub fn dows(&self) -> DowsR {
        DowsR::new(((self.bits >> 30) & 1) != 0)
    }
    #[doc = "Bit 31 - Alarm date mask bit"]
    #[inline(always)]
    pub fn mskd(&self) -> MskdR {
        MskdR::new(((self.bits >> 31) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:3 - Second units in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn scu(&mut self) -> ScuW<Alrm0tdSpec> {
        ScuW::new(self, 0)
    }
    #[doc = "Bits 4:6 - Second tens in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn sct(&mut self) -> SctW<Alrm0tdSpec> {
        SctW::new(self, 4)
    }
    #[doc = "Bit 7 - Alarm second mask bit"]
    #[inline(always)]
    #[must_use]
    pub fn msks(&mut self) -> MsksW<Alrm0tdSpec> {
        MsksW::new(self, 7)
    }
    #[doc = "Bits 8:11 - Minutes units in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn mnu(&mut self) -> MnuW<Alrm0tdSpec> {
        MnuW::new(self, 8)
    }
    #[doc = "Bits 12:14 - Minutes tens in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn mnt(&mut self) -> MntW<Alrm0tdSpec> {
        MntW::new(self, 12)
    }
    #[doc = "Bit 15 - Alarm minutes mask bit"]
    #[inline(always)]
    #[must_use]
    pub fn mskm(&mut self) -> MskmW<Alrm0tdSpec> {
        MskmW::new(self, 15)
    }
    #[doc = "Bits 16:19 - Hour units in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn hru(&mut self) -> HruW<Alrm0tdSpec> {
        HruW::new(self, 16)
    }
    #[doc = "Bits 20:21 - Hour tens in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn hrt(&mut self) -> HrtW<Alrm0tdSpec> {
        HrtW::new(self, 20)
    }
    #[doc = "Bit 22 - AM/PM flag"]
    #[inline(always)]
    #[must_use]
    pub fn pm(&mut self) -> PmW<Alrm0tdSpec> {
        PmW::new(self, 22)
    }
    #[doc = "Bit 23 - Alarm hour mask bit"]
    #[inline(always)]
    #[must_use]
    pub fn mskh(&mut self) -> MskhW<Alrm0tdSpec> {
        MskhW::new(self, 23)
    }
    #[doc = "Bits 24:27 - Date units or week day in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn dayu(&mut self) -> DayuW<Alrm0tdSpec> {
        DayuW::new(self, 24)
    }
    #[doc = "Bits 28:29 - Date tens in BCD code"]
    #[inline(always)]
    #[must_use]
    pub fn dayt(&mut self) -> DaytW<Alrm0tdSpec> {
        DaytW::new(self, 28)
    }
    #[doc = "Bit 30 - Day of the week selected"]
    #[inline(always)]
    #[must_use]
    pub fn dows(&mut self) -> DowsW<Alrm0tdSpec> {
        DowsW::new(self, 30)
    }
    #[doc = "Bit 31 - Alarm date mask bit"]
    #[inline(always)]
    #[must_use]
    pub fn mskd(&mut self) -> MskdW<Alrm0tdSpec> {
        MskdW::new(self, 31)
    }
}
#[doc = "Alarm 0 Time and date register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`alrm0td::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`alrm0td::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Alrm0tdSpec;
impl crate::RegisterSpec for Alrm0tdSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`alrm0td::R`](R) reader structure"]
impl crate::Readable for Alrm0tdSpec {}
#[doc = "`write(|w| ..)` method takes [`alrm0td::W`](W) writer structure"]
impl crate::Writable for Alrm0tdSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets ALRM0TD to value 0"]
impl crate::Resettable for Alrm0tdSpec {
    const RESET_VALUE: u32 = 0;
}