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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
#[doc = "Register `C2PR1` reader"]
pub struct R(crate::R<C2PR1_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<C2PR1_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<C2PR1_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<C2PR1_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `C2PR1` writer"]
pub struct W(crate::W<C2PR1_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<C2PR1_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::ops::DerefMut for W {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl From<crate::W<C2PR1_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<C2PR1_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Configurable event input pending\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum PR0_A {
    #[doc = "0: No trigger request occurred"]
    NotPending = 0,
    #[doc = "1: Selected trigger request occurred"]
    Pending = 1,
}
impl From<PR0_A> for bool {
    #[inline(always)]
    fn from(variant: PR0_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `PR0` reader - Configurable event input pending"]
pub type PR0_R = crate::BitReader<PR0_A>;
impl PR0_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PR0_A {
        match self.bits {
            false => PR0_A::NotPending,
            true => PR0_A::Pending,
        }
    }
    #[doc = "Checks if the value of the field is `NotPending`"]
    #[inline(always)]
    pub fn is_not_pending(&self) -> bool {
        *self == PR0_A::NotPending
    }
    #[doc = "Checks if the value of the field is `Pending`"]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == PR0_A::Pending
    }
}
#[doc = "Configurable event input pending\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum PR0_AW {
    #[doc = "1: Clears pending bit"]
    Clear = 1,
}
impl From<PR0_AW> for bool {
    #[inline(always)]
    fn from(variant: PR0_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `PR0` writer - Configurable event input pending"]
pub type PR0_W<'a, const O: u8> = crate::BitWriter<'a, u32, C2PR1_SPEC, PR0_AW, O>;
impl<'a, const O: u8> PR0_W<'a, O> {
    #[doc = "Clears pending bit"]
    #[inline(always)]
    pub fn clear(self) -> &'a mut W {
        self.variant(PR0_AW::Clear)
    }
}
#[doc = "Configurable event input pending"]
pub use PR0_A as PR1_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR2_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR3_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR4_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR5_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR6_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR7_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR8_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR9_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR10_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR11_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR12_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR13_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR14_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR15_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR16_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR17_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR18_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR19_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR20_A;
#[doc = "Configurable event input pending"]
pub use PR0_A as PR21_A;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR1_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR2_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR3_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR4_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR5_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR6_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR7_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR8_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR9_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR10_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR11_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR12_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR13_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR14_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR15_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR16_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR17_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR18_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR19_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR20_AW;
#[doc = "Configurable event input pending"]
pub use PR0_AW as PR21_AW;
#[doc = "Field `PR1` reader - Configurable event input pending"]
pub use PR0_R as PR1_R;
#[doc = "Field `PR2` reader - Configurable event input pending"]
pub use PR0_R as PR2_R;
#[doc = "Field `PR3` reader - Configurable event input pending"]
pub use PR0_R as PR3_R;
#[doc = "Field `PR4` reader - Configurable event input pending"]
pub use PR0_R as PR4_R;
#[doc = "Field `PR5` reader - Configurable event input pending"]
pub use PR0_R as PR5_R;
#[doc = "Field `PR6` reader - Configurable event input pending"]
pub use PR0_R as PR6_R;
#[doc = "Field `PR7` reader - Configurable event input pending"]
pub use PR0_R as PR7_R;
#[doc = "Field `PR8` reader - Configurable event input pending"]
pub use PR0_R as PR8_R;
#[doc = "Field `PR9` reader - Configurable event input pending"]
pub use PR0_R as PR9_R;
#[doc = "Field `PR10` reader - Configurable event input pending"]
pub use PR0_R as PR10_R;
#[doc = "Field `PR11` reader - Configurable event input pending"]
pub use PR0_R as PR11_R;
#[doc = "Field `PR12` reader - Configurable event input pending"]
pub use PR0_R as PR12_R;
#[doc = "Field `PR13` reader - Configurable event input pending"]
pub use PR0_R as PR13_R;
#[doc = "Field `PR14` reader - Configurable event input pending"]
pub use PR0_R as PR14_R;
#[doc = "Field `PR15` reader - Configurable event input pending"]
pub use PR0_R as PR15_R;
#[doc = "Field `PR16` reader - Configurable event input pending"]
pub use PR0_R as PR16_R;
#[doc = "Field `PR17` reader - Configurable event input pending"]
pub use PR0_R as PR17_R;
#[doc = "Field `PR18` reader - Configurable event input pending"]
pub use PR0_R as PR18_R;
#[doc = "Field `PR19` reader - Configurable event input pending"]
pub use PR0_R as PR19_R;
#[doc = "Field `PR20` reader - Configurable event input pending"]
pub use PR0_R as PR20_R;
#[doc = "Field `PR21` reader - Configurable event input pending"]
pub use PR0_R as PR21_R;
#[doc = "Field `PR1` writer - Configurable event input pending"]
pub use PR0_W as PR1_W;
#[doc = "Field `PR2` writer - Configurable event input pending"]
pub use PR0_W as PR2_W;
#[doc = "Field `PR3` writer - Configurable event input pending"]
pub use PR0_W as PR3_W;
#[doc = "Field `PR4` writer - Configurable event input pending"]
pub use PR0_W as PR4_W;
#[doc = "Field `PR5` writer - Configurable event input pending"]
pub use PR0_W as PR5_W;
#[doc = "Field `PR6` writer - Configurable event input pending"]
pub use PR0_W as PR6_W;
#[doc = "Field `PR7` writer - Configurable event input pending"]
pub use PR0_W as PR7_W;
#[doc = "Field `PR8` writer - Configurable event input pending"]
pub use PR0_W as PR8_W;
#[doc = "Field `PR9` writer - Configurable event input pending"]
pub use PR0_W as PR9_W;
#[doc = "Field `PR10` writer - Configurable event input pending"]
pub use PR0_W as PR10_W;
#[doc = "Field `PR11` writer - Configurable event input pending"]
pub use PR0_W as PR11_W;
#[doc = "Field `PR12` writer - Configurable event input pending"]
pub use PR0_W as PR12_W;
#[doc = "Field `PR13` writer - Configurable event input pending"]
pub use PR0_W as PR13_W;
#[doc = "Field `PR14` writer - Configurable event input pending"]
pub use PR0_W as PR14_W;
#[doc = "Field `PR15` writer - Configurable event input pending"]
pub use PR0_W as PR15_W;
#[doc = "Field `PR16` writer - Configurable event input pending"]
pub use PR0_W as PR16_W;
#[doc = "Field `PR17` writer - Configurable event input pending"]
pub use PR0_W as PR17_W;
#[doc = "Field `PR18` writer - Configurable event input pending"]
pub use PR0_W as PR18_W;
#[doc = "Field `PR19` writer - Configurable event input pending"]
pub use PR0_W as PR19_W;
#[doc = "Field `PR20` writer - Configurable event input pending"]
pub use PR0_W as PR20_W;
#[doc = "Field `PR21` writer - Configurable event input pending"]
pub use PR0_W as PR21_W;
impl R {
    #[doc = "Bit 0 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr0(&self) -> PR0_R {
        PR0_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr1(&self) -> PR1_R {
        PR1_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr2(&self) -> PR2_R {
        PR2_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr3(&self) -> PR3_R {
        PR3_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr4(&self) -> PR4_R {
        PR4_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr5(&self) -> PR5_R {
        PR5_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr6(&self) -> PR6_R {
        PR6_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr7(&self) -> PR7_R {
        PR7_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr8(&self) -> PR8_R {
        PR8_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr9(&self) -> PR9_R {
        PR9_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr10(&self) -> PR10_R {
        PR10_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr11(&self) -> PR11_R {
        PR11_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 12 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr12(&self) -> PR12_R {
        PR12_R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr13(&self) -> PR13_R {
        PR13_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr14(&self) -> PR14_R {
        PR14_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr15(&self) -> PR15_R {
        PR15_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bit 16 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr16(&self) -> PR16_R {
        PR16_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr17(&self) -> PR17_R {
        PR17_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr18(&self) -> PR18_R {
        PR18_R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr19(&self) -> PR19_R {
        PR19_R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 20 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr20(&self) -> PR20_R {
        PR20_R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 21 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr21(&self) -> PR21_R {
        PR21_R::new(((self.bits >> 21) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr0(&mut self) -> PR0_W<0> {
        PR0_W::new(self)
    }
    #[doc = "Bit 1 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr1(&mut self) -> PR1_W<1> {
        PR1_W::new(self)
    }
    #[doc = "Bit 2 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr2(&mut self) -> PR2_W<2> {
        PR2_W::new(self)
    }
    #[doc = "Bit 3 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr3(&mut self) -> PR3_W<3> {
        PR3_W::new(self)
    }
    #[doc = "Bit 4 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr4(&mut self) -> PR4_W<4> {
        PR4_W::new(self)
    }
    #[doc = "Bit 5 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr5(&mut self) -> PR5_W<5> {
        PR5_W::new(self)
    }
    #[doc = "Bit 6 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr6(&mut self) -> PR6_W<6> {
        PR6_W::new(self)
    }
    #[doc = "Bit 7 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr7(&mut self) -> PR7_W<7> {
        PR7_W::new(self)
    }
    #[doc = "Bit 8 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr8(&mut self) -> PR8_W<8> {
        PR8_W::new(self)
    }
    #[doc = "Bit 9 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr9(&mut self) -> PR9_W<9> {
        PR9_W::new(self)
    }
    #[doc = "Bit 10 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr10(&mut self) -> PR10_W<10> {
        PR10_W::new(self)
    }
    #[doc = "Bit 11 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr11(&mut self) -> PR11_W<11> {
        PR11_W::new(self)
    }
    #[doc = "Bit 12 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr12(&mut self) -> PR12_W<12> {
        PR12_W::new(self)
    }
    #[doc = "Bit 13 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr13(&mut self) -> PR13_W<13> {
        PR13_W::new(self)
    }
    #[doc = "Bit 14 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr14(&mut self) -> PR14_W<14> {
        PR14_W::new(self)
    }
    #[doc = "Bit 15 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr15(&mut self) -> PR15_W<15> {
        PR15_W::new(self)
    }
    #[doc = "Bit 16 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr16(&mut self) -> PR16_W<16> {
        PR16_W::new(self)
    }
    #[doc = "Bit 17 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr17(&mut self) -> PR17_W<17> {
        PR17_W::new(self)
    }
    #[doc = "Bit 18 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr18(&mut self) -> PR18_W<18> {
        PR18_W::new(self)
    }
    #[doc = "Bit 19 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr19(&mut self) -> PR19_W<19> {
        PR19_W::new(self)
    }
    #[doc = "Bit 20 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr20(&mut self) -> PR20_W<20> {
        PR20_W::new(self)
    }
    #[doc = "Bit 21 - Configurable event input pending"]
    #[inline(always)]
    pub fn pr21(&mut self) -> PR21_W<21> {
        PR21_W::new(self)
    }
    #[doc = "Writes raw bits to the register."]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.0.bits(bits);
        self
    }
}
#[doc = "CPU2 EXTI pending register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [c2pr1](index.html) module"]
pub struct C2PR1_SPEC;
impl crate::RegisterSpec for C2PR1_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [c2pr1::R](R) reader structure"]
impl crate::Readable for C2PR1_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [c2pr1::W](W) writer structure"]
impl crate::Writable for C2PR1_SPEC {
    type Writer = W;
}
#[doc = "`reset()` method sets C2PR1 to value 0"]
impl crate::Resettable for C2PR1_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}