gd32f4pac 0.9.2

Device support crate for GD32F4 devices
Documentation
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
#[doc = "Register `CTL0` reader"]
pub type R = crate::R<Ctl0Spec>;
#[doc = "Register `CTL0` writer"]
pub type W = crate::W<Ctl0Spec>;
#[doc = "Clock trim ok interrupt enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Ckokie {
    #[doc = "0: CKOKIF interrupt disabled"]
    Disabled = 0,
    #[doc = "1: CKOKIF interrupt enabled"]
    Enabled = 1,
}
impl From<Ckokie> for bool {
    #[inline(always)]
    fn from(variant: Ckokie) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CKOKIE` reader - Clock trim ok interrupt enable"]
pub type CkokieR = crate::BitReader<Ckokie>;
impl CkokieR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Ckokie {
        match self.bits {
            false => Ckokie::Disabled,
            true => Ckokie::Enabled,
        }
    }
    #[doc = "CKOKIF interrupt disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Ckokie::Disabled
    }
    #[doc = "CKOKIF interrupt enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Ckokie::Enabled
    }
}
#[doc = "Field `CKOKIE` writer - Clock trim ok interrupt enable"]
pub type CkokieW<'a, REG> = crate::BitWriter<'a, REG, Ckokie>;
impl<'a, REG> CkokieW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "CKOKIF interrupt disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Ckokie::Disabled)
    }
    #[doc = "CKOKIF interrupt enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Ckokie::Enabled)
    }
}
#[doc = "Clock trim warning interrupt enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Ckwarnie {
    #[doc = "0: CKWARNIF interrupt disabled"]
    Disabled = 0,
    #[doc = "1: CKWARNIF interrupt enabled"]
    Enabled = 1,
}
impl From<Ckwarnie> for bool {
    #[inline(always)]
    fn from(variant: Ckwarnie) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CKWARNIE` reader - Clock trim warning interrupt enable"]
pub type CkwarnieR = crate::BitReader<Ckwarnie>;
impl CkwarnieR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Ckwarnie {
        match self.bits {
            false => Ckwarnie::Disabled,
            true => Ckwarnie::Enabled,
        }
    }
    #[doc = "CKWARNIF interrupt disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Ckwarnie::Disabled
    }
    #[doc = "CKWARNIF interrupt enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Ckwarnie::Enabled
    }
}
#[doc = "Field `CKWARNIE` writer - Clock trim warning interrupt enable"]
pub type CkwarnieW<'a, REG> = crate::BitWriter<'a, REG, Ckwarnie>;
impl<'a, REG> CkwarnieW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "CKWARNIF interrupt disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Ckwarnie::Disabled)
    }
    #[doc = "CKWARNIF interrupt enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Ckwarnie::Enabled)
    }
}
#[doc = "Error interrupt enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Errie {
    #[doc = "0: ERRIF interrupt disabled"]
    Disabled = 0,
    #[doc = "1: ERRIF interrupt enabled"]
    Enabled = 1,
}
impl From<Errie> for bool {
    #[inline(always)]
    fn from(variant: Errie) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `ERRIE` reader - Error interrupt enable"]
pub type ErrieR = crate::BitReader<Errie>;
impl ErrieR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Errie {
        match self.bits {
            false => Errie::Disabled,
            true => Errie::Enabled,
        }
    }
    #[doc = "ERRIF interrupt disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Errie::Disabled
    }
    #[doc = "ERRIF interrupt enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Errie::Enabled
    }
}
#[doc = "Field `ERRIE` writer - Error interrupt enable"]
pub type ErrieW<'a, REG> = crate::BitWriter<'a, REG, Errie>;
impl<'a, REG> ErrieW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "ERRIF interrupt disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Errie::Disabled)
    }
    #[doc = "ERRIF interrupt enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Errie::Enabled)
    }
}
#[doc = "EREFIF interrupt enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Erefie {
    #[doc = "0: EREFIF interrupt disabled"]
    Disabled = 0,
    #[doc = "1: EREFIF interrupt enabled"]
    Enabled = 1,
}
impl From<Erefie> for bool {
    #[inline(always)]
    fn from(variant: Erefie) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `EREFIE` reader - EREFIF interrupt enable"]
pub type ErefieR = crate::BitReader<Erefie>;
impl ErefieR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Erefie {
        match self.bits {
            false => Erefie::Disabled,
            true => Erefie::Enabled,
        }
    }
    #[doc = "EREFIF interrupt disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Erefie::Disabled
    }
    #[doc = "EREFIF interrupt enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Erefie::Enabled
    }
}
#[doc = "Field `EREFIE` writer - EREFIF interrupt enable"]
pub type ErefieW<'a, REG> = crate::BitWriter<'a, REG, Erefie>;
impl<'a, REG> ErefieW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "EREFIF interrupt disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Erefie::Disabled)
    }
    #[doc = "EREFIF interrupt enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Erefie::Enabled)
    }
}
#[doc = "CTC counter enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Cnten {
    #[doc = "0: CTC trim counter disabled"]
    Disabled = 0,
    #[doc = "1: CTC trim counter enabled"]
    Enabled = 1,
}
impl From<Cnten> for bool {
    #[inline(always)]
    fn from(variant: Cnten) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CNTEN` reader - CTC counter enable"]
pub type CntenR = crate::BitReader<Cnten>;
impl CntenR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Cnten {
        match self.bits {
            false => Cnten::Disabled,
            true => Cnten::Enabled,
        }
    }
    #[doc = "CTC trim counter disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Cnten::Disabled
    }
    #[doc = "CTC trim counter enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Cnten::Enabled
    }
}
#[doc = "Field `CNTEN` writer - CTC counter enable"]
pub type CntenW<'a, REG> = crate::BitWriter<'a, REG, Cnten>;
impl<'a, REG> CntenW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "CTC trim counter disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Cnten::Disabled)
    }
    #[doc = "CTC trim counter enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Cnten::Enabled)
    }
}
#[doc = "Hardware automatically trim mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Autotrim {
    #[doc = "0: Hardware automatic trim disabled"]
    Disabled = 0,
    #[doc = "1: Hardware automatic trim enabled"]
    Enabled = 1,
}
impl From<Autotrim> for bool {
    #[inline(always)]
    fn from(variant: Autotrim) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `AUTOTRIM` reader - Hardware automatically trim mode"]
pub type AutotrimR = crate::BitReader<Autotrim>;
impl AutotrimR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Autotrim {
        match self.bits {
            false => Autotrim::Disabled,
            true => Autotrim::Enabled,
        }
    }
    #[doc = "Hardware automatic trim disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == Autotrim::Disabled
    }
    #[doc = "Hardware automatic trim enabled"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == Autotrim::Enabled
    }
}
#[doc = "Field `AUTOTRIM` writer - Hardware automatically trim mode"]
pub type AutotrimW<'a, REG> = crate::BitWriter<'a, REG, Autotrim>;
impl<'a, REG> AutotrimW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Hardware automatic trim disabled"]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(Autotrim::Disabled)
    }
    #[doc = "Hardware automatic trim enabled"]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(Autotrim::Enabled)
    }
}
#[doc = "Software reference source sync pulse\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Swrefpul {
    #[doc = "1: Generates a software reference source sync pulse."]
    Generate = 1,
}
impl From<Swrefpul> for bool {
    #[inline(always)]
    fn from(variant: Swrefpul) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `SWREFPUL` reader - Software reference source sync pulse"]
pub type SwrefpulR = crate::BitReader<Swrefpul>;
impl SwrefpulR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Swrefpul> {
        match self.bits {
            true => Some(Swrefpul::Generate),
            _ => None,
        }
    }
    #[doc = "Generates a software reference source sync pulse."]
    #[inline(always)]
    pub fn is_generate(&self) -> bool {
        *self == Swrefpul::Generate
    }
}
#[doc = "Field `SWREFPUL` writer - Software reference source sync pulse"]
pub type SwrefpulW<'a, REG> = crate::BitWriter<'a, REG, Swrefpul>;
impl<'a, REG> SwrefpulW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Generates a software reference source sync pulse."]
    #[inline(always)]
    pub fn generate(self) -> &'a mut crate::W<REG> {
        self.variant(Swrefpul::Generate)
    }
}
#[doc = "Field `TRIMVALUE` reader - IRC48M trim value"]
pub type TrimvalueR = crate::FieldReader;
#[doc = "Field `TRIMVALUE` writer - IRC48M trim value"]
pub type TrimvalueW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
impl R {
    #[doc = "Bit 0 - Clock trim ok interrupt enable"]
    #[inline(always)]
    pub fn ckokie(&self) -> CkokieR {
        CkokieR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Clock trim warning interrupt enable"]
    #[inline(always)]
    pub fn ckwarnie(&self) -> CkwarnieR {
        CkwarnieR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Error interrupt enable"]
    #[inline(always)]
    pub fn errie(&self) -> ErrieR {
        ErrieR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - EREFIF interrupt enable"]
    #[inline(always)]
    pub fn erefie(&self) -> ErefieR {
        ErefieR::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 5 - CTC counter enable"]
    #[inline(always)]
    pub fn cnten(&self) -> CntenR {
        CntenR::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Hardware automatically trim mode"]
    #[inline(always)]
    pub fn autotrim(&self) -> AutotrimR {
        AutotrimR::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Software reference source sync pulse"]
    #[inline(always)]
    pub fn swrefpul(&self) -> SwrefpulR {
        SwrefpulR::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bits 8:13 - IRC48M trim value"]
    #[inline(always)]
    pub fn trimvalue(&self) -> TrimvalueR {
        TrimvalueR::new(((self.bits >> 8) & 0x3f) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Clock trim ok interrupt enable"]
    #[inline(always)]
    pub fn ckokie(&mut self) -> CkokieW<Ctl0Spec> {
        CkokieW::new(self, 0)
    }
    #[doc = "Bit 1 - Clock trim warning interrupt enable"]
    #[inline(always)]
    pub fn ckwarnie(&mut self) -> CkwarnieW<Ctl0Spec> {
        CkwarnieW::new(self, 1)
    }
    #[doc = "Bit 2 - Error interrupt enable"]
    #[inline(always)]
    pub fn errie(&mut self) -> ErrieW<Ctl0Spec> {
        ErrieW::new(self, 2)
    }
    #[doc = "Bit 3 - EREFIF interrupt enable"]
    #[inline(always)]
    pub fn erefie(&mut self) -> ErefieW<Ctl0Spec> {
        ErefieW::new(self, 3)
    }
    #[doc = "Bit 5 - CTC counter enable"]
    #[inline(always)]
    pub fn cnten(&mut self) -> CntenW<Ctl0Spec> {
        CntenW::new(self, 5)
    }
    #[doc = "Bit 6 - Hardware automatically trim mode"]
    #[inline(always)]
    pub fn autotrim(&mut self) -> AutotrimW<Ctl0Spec> {
        AutotrimW::new(self, 6)
    }
    #[doc = "Bit 7 - Software reference source sync pulse"]
    #[inline(always)]
    pub fn swrefpul(&mut self) -> SwrefpulW<Ctl0Spec> {
        SwrefpulW::new(self, 7)
    }
    #[doc = "Bits 8:13 - IRC48M trim value"]
    #[inline(always)]
    pub fn trimvalue(&mut self) -> TrimvalueW<Ctl0Spec> {
        TrimvalueW::new(self, 8)
    }
}
#[doc = "Control register 0\n\nYou can [`read`](crate::Reg::read) this register and get [`ctl0::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ctl0::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Ctl0Spec;
impl crate::RegisterSpec for Ctl0Spec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`ctl0::R`](R) reader structure"]
impl crate::Readable for Ctl0Spec {}
#[doc = "`write(|w| ..)` method takes [`ctl0::W`](W) writer structure"]
impl crate::Writable for Ctl0Spec {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets CTL0 to value 0x2000"]
impl crate::Resettable for Ctl0Spec {
    const RESET_VALUE: u32 = 0x2000;
}