atsamd11d/tcc0/
evctrl.rs

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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
#[doc = "Register `EVCTRL` reader"]
pub type R = crate::R<EvctrlSpec>;
#[doc = "Register `EVCTRL` writer"]
pub type W = crate::W<EvctrlSpec>;
#[doc = "Timer/counter Input Event0 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Evact0select {
    #[doc = "0: Event action disabled"]
    Off = 0,
    #[doc = "1: Start, restart or re-trigger counter on event"]
    Retrigger = 1,
    #[doc = "2: Count on event"]
    Countev = 2,
    #[doc = "3: Start counter on event"]
    Start = 3,
    #[doc = "4: Increment counter on event"]
    Inc = 4,
    #[doc = "5: Count on active state of asynchronous event"]
    Count = 5,
    #[doc = "7: Non-recoverable fault"]
    Fault = 7,
}
impl From<Evact0select> for u8 {
    #[inline(always)]
    fn from(variant: Evact0select) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Evact0select {
    type Ux = u8;
}
impl crate::IsEnum for Evact0select {}
#[doc = "Field `EVACT0` reader - Timer/counter Input Event0 Action"]
pub type Evact0R = crate::FieldReader<Evact0select>;
impl Evact0R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Evact0select> {
        match self.bits {
            0 => Some(Evact0select::Off),
            1 => Some(Evact0select::Retrigger),
            2 => Some(Evact0select::Countev),
            3 => Some(Evact0select::Start),
            4 => Some(Evact0select::Inc),
            5 => Some(Evact0select::Count),
            7 => Some(Evact0select::Fault),
            _ => None,
        }
    }
    #[doc = "Event action disabled"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == Evact0select::Off
    }
    #[doc = "Start, restart or re-trigger counter on event"]
    #[inline(always)]
    pub fn is_retrigger(&self) -> bool {
        *self == Evact0select::Retrigger
    }
    #[doc = "Count on event"]
    #[inline(always)]
    pub fn is_countev(&self) -> bool {
        *self == Evact0select::Countev
    }
    #[doc = "Start counter on event"]
    #[inline(always)]
    pub fn is_start(&self) -> bool {
        *self == Evact0select::Start
    }
    #[doc = "Increment counter on event"]
    #[inline(always)]
    pub fn is_inc(&self) -> bool {
        *self == Evact0select::Inc
    }
    #[doc = "Count on active state of asynchronous event"]
    #[inline(always)]
    pub fn is_count(&self) -> bool {
        *self == Evact0select::Count
    }
    #[doc = "Non-recoverable fault"]
    #[inline(always)]
    pub fn is_fault(&self) -> bool {
        *self == Evact0select::Fault
    }
}
#[doc = "Field `EVACT0` writer - Timer/counter Input Event0 Action"]
pub type Evact0W<'a, REG> = crate::FieldWriter<'a, REG, 3, Evact0select>;
impl<'a, REG> Evact0W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Event action disabled"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Off)
    }
    #[doc = "Start, restart or re-trigger counter on event"]
    #[inline(always)]
    pub fn retrigger(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Retrigger)
    }
    #[doc = "Count on event"]
    #[inline(always)]
    pub fn countev(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Countev)
    }
    #[doc = "Start counter on event"]
    #[inline(always)]
    pub fn start(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Start)
    }
    #[doc = "Increment counter on event"]
    #[inline(always)]
    pub fn inc(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Inc)
    }
    #[doc = "Count on active state of asynchronous event"]
    #[inline(always)]
    pub fn count(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Count)
    }
    #[doc = "Non-recoverable fault"]
    #[inline(always)]
    pub fn fault(self) -> &'a mut crate::W<REG> {
        self.variant(Evact0select::Fault)
    }
}
#[doc = "Timer/counter Input Event1 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Evact1select {
    #[doc = "0: Event action disabled"]
    Off = 0,
    #[doc = "1: Re-trigger counter on event"]
    Retrigger = 1,
    #[doc = "2: Direction control"]
    Dir = 2,
    #[doc = "3: Stop counter on event"]
    Stop = 3,
    #[doc = "4: Decrement counter on event"]
    Dec = 4,
    #[doc = "5: Period capture value in CC0 register, pulse width capture value in CC1 register"]
    Ppw = 5,
    #[doc = "6: Period capture value in CC1 register, pulse width capture value in CC0 register"]
    Pwp = 6,
    #[doc = "7: Non-recoverable fault"]
    Fault = 7,
}
impl From<Evact1select> for u8 {
    #[inline(always)]
    fn from(variant: Evact1select) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Evact1select {
    type Ux = u8;
}
impl crate::IsEnum for Evact1select {}
#[doc = "Field `EVACT1` reader - Timer/counter Input Event1 Action"]
pub type Evact1R = crate::FieldReader<Evact1select>;
impl Evact1R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Evact1select {
        match self.bits {
            0 => Evact1select::Off,
            1 => Evact1select::Retrigger,
            2 => Evact1select::Dir,
            3 => Evact1select::Stop,
            4 => Evact1select::Dec,
            5 => Evact1select::Ppw,
            6 => Evact1select::Pwp,
            7 => Evact1select::Fault,
            _ => unreachable!(),
        }
    }
    #[doc = "Event action disabled"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == Evact1select::Off
    }
    #[doc = "Re-trigger counter on event"]
    #[inline(always)]
    pub fn is_retrigger(&self) -> bool {
        *self == Evact1select::Retrigger
    }
    #[doc = "Direction control"]
    #[inline(always)]
    pub fn is_dir(&self) -> bool {
        *self == Evact1select::Dir
    }
    #[doc = "Stop counter on event"]
    #[inline(always)]
    pub fn is_stop(&self) -> bool {
        *self == Evact1select::Stop
    }
    #[doc = "Decrement counter on event"]
    #[inline(always)]
    pub fn is_dec(&self) -> bool {
        *self == Evact1select::Dec
    }
    #[doc = "Period capture value in CC0 register, pulse width capture value in CC1 register"]
    #[inline(always)]
    pub fn is_ppw(&self) -> bool {
        *self == Evact1select::Ppw
    }
    #[doc = "Period capture value in CC1 register, pulse width capture value in CC0 register"]
    #[inline(always)]
    pub fn is_pwp(&self) -> bool {
        *self == Evact1select::Pwp
    }
    #[doc = "Non-recoverable fault"]
    #[inline(always)]
    pub fn is_fault(&self) -> bool {
        *self == Evact1select::Fault
    }
}
#[doc = "Field `EVACT1` writer - Timer/counter Input Event1 Action"]
pub type Evact1W<'a, REG> = crate::FieldWriter<'a, REG, 3, Evact1select, crate::Safe>;
impl<'a, REG> Evact1W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Event action disabled"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Off)
    }
    #[doc = "Re-trigger counter on event"]
    #[inline(always)]
    pub fn retrigger(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Retrigger)
    }
    #[doc = "Direction control"]
    #[inline(always)]
    pub fn dir(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Dir)
    }
    #[doc = "Stop counter on event"]
    #[inline(always)]
    pub fn stop(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Stop)
    }
    #[doc = "Decrement counter on event"]
    #[inline(always)]
    pub fn dec(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Dec)
    }
    #[doc = "Period capture value in CC0 register, pulse width capture value in CC1 register"]
    #[inline(always)]
    pub fn ppw(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Ppw)
    }
    #[doc = "Period capture value in CC1 register, pulse width capture value in CC0 register"]
    #[inline(always)]
    pub fn pwp(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Pwp)
    }
    #[doc = "Non-recoverable fault"]
    #[inline(always)]
    pub fn fault(self) -> &'a mut crate::W<REG> {
        self.variant(Evact1select::Fault)
    }
}
#[doc = "Timer/counter Output Event Mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Cntselselect {
    #[doc = "0: An interrupt/event is generated when a new counter cycle starts"]
    Start = 0,
    #[doc = "1: An interrupt/event is generated when a counter cycle ends"]
    End = 1,
    #[doc = "2: An interrupt/event is generated when a counter cycle ends, except for the first and last cycles"]
    Between = 2,
    #[doc = "3: An interrupt/event is generated when a new counter cycle starts or a counter cycle ends"]
    Boundary = 3,
}
impl From<Cntselselect> for u8 {
    #[inline(always)]
    fn from(variant: Cntselselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Cntselselect {
    type Ux = u8;
}
impl crate::IsEnum for Cntselselect {}
#[doc = "Field `CNTSEL` reader - Timer/counter Output Event Mode"]
pub type CntselR = crate::FieldReader<Cntselselect>;
impl CntselR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Cntselselect {
        match self.bits {
            0 => Cntselselect::Start,
            1 => Cntselselect::End,
            2 => Cntselselect::Between,
            3 => Cntselselect::Boundary,
            _ => unreachable!(),
        }
    }
    #[doc = "An interrupt/event is generated when a new counter cycle starts"]
    #[inline(always)]
    pub fn is_start(&self) -> bool {
        *self == Cntselselect::Start
    }
    #[doc = "An interrupt/event is generated when a counter cycle ends"]
    #[inline(always)]
    pub fn is_end(&self) -> bool {
        *self == Cntselselect::End
    }
    #[doc = "An interrupt/event is generated when a counter cycle ends, except for the first and last cycles"]
    #[inline(always)]
    pub fn is_between(&self) -> bool {
        *self == Cntselselect::Between
    }
    #[doc = "An interrupt/event is generated when a new counter cycle starts or a counter cycle ends"]
    #[inline(always)]
    pub fn is_boundary(&self) -> bool {
        *self == Cntselselect::Boundary
    }
}
#[doc = "Field `CNTSEL` writer - Timer/counter Output Event Mode"]
pub type CntselW<'a, REG> = crate::FieldWriter<'a, REG, 2, Cntselselect, crate::Safe>;
impl<'a, REG> CntselW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "An interrupt/event is generated when a new counter cycle starts"]
    #[inline(always)]
    pub fn start(self) -> &'a mut crate::W<REG> {
        self.variant(Cntselselect::Start)
    }
    #[doc = "An interrupt/event is generated when a counter cycle ends"]
    #[inline(always)]
    pub fn end(self) -> &'a mut crate::W<REG> {
        self.variant(Cntselselect::End)
    }
    #[doc = "An interrupt/event is generated when a counter cycle ends, except for the first and last cycles"]
    #[inline(always)]
    pub fn between(self) -> &'a mut crate::W<REG> {
        self.variant(Cntselselect::Between)
    }
    #[doc = "An interrupt/event is generated when a new counter cycle starts or a counter cycle ends"]
    #[inline(always)]
    pub fn boundary(self) -> &'a mut crate::W<REG> {
        self.variant(Cntselselect::Boundary)
    }
}
#[doc = "Field `OVFEO` reader - Overflow/Underflow Output Event Enable"]
pub type OvfeoR = crate::BitReader;
#[doc = "Field `OVFEO` writer - Overflow/Underflow Output Event Enable"]
pub type OvfeoW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TRGEO` reader - Retrigger Output Event Enable"]
pub type TrgeoR = crate::BitReader;
#[doc = "Field `TRGEO` writer - Retrigger Output Event Enable"]
pub type TrgeoW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CNTEO` reader - Timer/counter Output Event Enable"]
pub type CnteoR = crate::BitReader;
#[doc = "Field `CNTEO` writer - Timer/counter Output Event Enable"]
pub type CnteoW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TCINV0` reader - Inverted Event 0 Input Enable"]
pub type Tcinv0R = crate::BitReader;
#[doc = "Field `TCINV0` writer - Inverted Event 0 Input Enable"]
pub type Tcinv0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TCINV1` reader - Inverted Event 1 Input Enable"]
pub type Tcinv1R = crate::BitReader;
#[doc = "Field `TCINV1` writer - Inverted Event 1 Input Enable"]
pub type Tcinv1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TCEI0` reader - Timer/counter Event 0 Input Enable"]
pub type Tcei0R = crate::BitReader;
#[doc = "Field `TCEI0` writer - Timer/counter Event 0 Input Enable"]
pub type Tcei0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TCEI1` reader - Timer/counter Event 1 Input Enable"]
pub type Tcei1R = crate::BitReader;
#[doc = "Field `TCEI1` writer - Timer/counter Event 1 Input Enable"]
pub type Tcei1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEI0` reader - Match or Capture Channel 0 Event Input Enable"]
pub type Mcei0R = crate::BitReader;
#[doc = "Field `MCEI0` writer - Match or Capture Channel 0 Event Input Enable"]
pub type Mcei0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEI1` reader - Match or Capture Channel 1 Event Input Enable"]
pub type Mcei1R = crate::BitReader;
#[doc = "Field `MCEI1` writer - Match or Capture Channel 1 Event Input Enable"]
pub type Mcei1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEI2` reader - Match or Capture Channel 2 Event Input Enable"]
pub type Mcei2R = crate::BitReader;
#[doc = "Field `MCEI2` writer - Match or Capture Channel 2 Event Input Enable"]
pub type Mcei2W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEI3` reader - Match or Capture Channel 3 Event Input Enable"]
pub type Mcei3R = crate::BitReader;
#[doc = "Field `MCEI3` writer - Match or Capture Channel 3 Event Input Enable"]
pub type Mcei3W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEO0` reader - Match or Capture Channel 0 Event Output Enable"]
pub type Mceo0R = crate::BitReader;
#[doc = "Field `MCEO0` writer - Match or Capture Channel 0 Event Output Enable"]
pub type Mceo0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEO1` reader - Match or Capture Channel 1 Event Output Enable"]
pub type Mceo1R = crate::BitReader;
#[doc = "Field `MCEO1` writer - Match or Capture Channel 1 Event Output Enable"]
pub type Mceo1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEO2` reader - Match or Capture Channel 2 Event Output Enable"]
pub type Mceo2R = crate::BitReader;
#[doc = "Field `MCEO2` writer - Match or Capture Channel 2 Event Output Enable"]
pub type Mceo2W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `MCEO3` reader - Match or Capture Channel 3 Event Output Enable"]
pub type Mceo3R = crate::BitReader;
#[doc = "Field `MCEO3` writer - Match or Capture Channel 3 Event Output Enable"]
pub type Mceo3W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bits 0:2 - Timer/counter Input Event0 Action"]
    #[inline(always)]
    pub fn evact0(&self) -> Evact0R {
        Evact0R::new((self.bits & 7) as u8)
    }
    #[doc = "Bits 3:5 - Timer/counter Input Event1 Action"]
    #[inline(always)]
    pub fn evact1(&self) -> Evact1R {
        Evact1R::new(((self.bits >> 3) & 7) as u8)
    }
    #[doc = "Bits 6:7 - Timer/counter Output Event Mode"]
    #[inline(always)]
    pub fn cntsel(&self) -> CntselR {
        CntselR::new(((self.bits >> 6) & 3) as u8)
    }
    #[doc = "Bit 8 - Overflow/Underflow Output Event Enable"]
    #[inline(always)]
    pub fn ovfeo(&self) -> OvfeoR {
        OvfeoR::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Retrigger Output Event Enable"]
    #[inline(always)]
    pub fn trgeo(&self) -> TrgeoR {
        TrgeoR::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Timer/counter Output Event Enable"]
    #[inline(always)]
    pub fn cnteo(&self) -> CnteoR {
        CnteoR::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 12 - Inverted Event 0 Input Enable"]
    #[inline(always)]
    pub fn tcinv0(&self) -> Tcinv0R {
        Tcinv0R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Inverted Event 1 Input Enable"]
    #[inline(always)]
    pub fn tcinv1(&self) -> Tcinv1R {
        Tcinv1R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Timer/counter Event 0 Input Enable"]
    #[inline(always)]
    pub fn tcei0(&self) -> Tcei0R {
        Tcei0R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Timer/counter Event 1 Input Enable"]
    #[inline(always)]
    pub fn tcei1(&self) -> Tcei1R {
        Tcei1R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bit 16 - Match or Capture Channel 0 Event Input Enable"]
    #[inline(always)]
    pub fn mcei0(&self) -> Mcei0R {
        Mcei0R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - Match or Capture Channel 1 Event Input Enable"]
    #[inline(always)]
    pub fn mcei1(&self) -> Mcei1R {
        Mcei1R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - Match or Capture Channel 2 Event Input Enable"]
    #[inline(always)]
    pub fn mcei2(&self) -> Mcei2R {
        Mcei2R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - Match or Capture Channel 3 Event Input Enable"]
    #[inline(always)]
    pub fn mcei3(&self) -> Mcei3R {
        Mcei3R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 24 - Match or Capture Channel 0 Event Output Enable"]
    #[inline(always)]
    pub fn mceo0(&self) -> Mceo0R {
        Mceo0R::new(((self.bits >> 24) & 1) != 0)
    }
    #[doc = "Bit 25 - Match or Capture Channel 1 Event Output Enable"]
    #[inline(always)]
    pub fn mceo1(&self) -> Mceo1R {
        Mceo1R::new(((self.bits >> 25) & 1) != 0)
    }
    #[doc = "Bit 26 - Match or Capture Channel 2 Event Output Enable"]
    #[inline(always)]
    pub fn mceo2(&self) -> Mceo2R {
        Mceo2R::new(((self.bits >> 26) & 1) != 0)
    }
    #[doc = "Bit 27 - Match or Capture Channel 3 Event Output Enable"]
    #[inline(always)]
    pub fn mceo3(&self) -> Mceo3R {
        Mceo3R::new(((self.bits >> 27) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:2 - Timer/counter Input Event0 Action"]
    #[inline(always)]
    #[must_use]
    pub fn evact0(&mut self) -> Evact0W<EvctrlSpec> {
        Evact0W::new(self, 0)
    }
    #[doc = "Bits 3:5 - Timer/counter Input Event1 Action"]
    #[inline(always)]
    #[must_use]
    pub fn evact1(&mut self) -> Evact1W<EvctrlSpec> {
        Evact1W::new(self, 3)
    }
    #[doc = "Bits 6:7 - Timer/counter Output Event Mode"]
    #[inline(always)]
    #[must_use]
    pub fn cntsel(&mut self) -> CntselW<EvctrlSpec> {
        CntselW::new(self, 6)
    }
    #[doc = "Bit 8 - Overflow/Underflow Output Event Enable"]
    #[inline(always)]
    #[must_use]
    pub fn ovfeo(&mut self) -> OvfeoW<EvctrlSpec> {
        OvfeoW::new(self, 8)
    }
    #[doc = "Bit 9 - Retrigger Output Event Enable"]
    #[inline(always)]
    #[must_use]
    pub fn trgeo(&mut self) -> TrgeoW<EvctrlSpec> {
        TrgeoW::new(self, 9)
    }
    #[doc = "Bit 10 - Timer/counter Output Event Enable"]
    #[inline(always)]
    #[must_use]
    pub fn cnteo(&mut self) -> CnteoW<EvctrlSpec> {
        CnteoW::new(self, 10)
    }
    #[doc = "Bit 12 - Inverted Event 0 Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn tcinv0(&mut self) -> Tcinv0W<EvctrlSpec> {
        Tcinv0W::new(self, 12)
    }
    #[doc = "Bit 13 - Inverted Event 1 Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn tcinv1(&mut self) -> Tcinv1W<EvctrlSpec> {
        Tcinv1W::new(self, 13)
    }
    #[doc = "Bit 14 - Timer/counter Event 0 Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn tcei0(&mut self) -> Tcei0W<EvctrlSpec> {
        Tcei0W::new(self, 14)
    }
    #[doc = "Bit 15 - Timer/counter Event 1 Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn tcei1(&mut self) -> Tcei1W<EvctrlSpec> {
        Tcei1W::new(self, 15)
    }
    #[doc = "Bit 16 - Match or Capture Channel 0 Event Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mcei0(&mut self) -> Mcei0W<EvctrlSpec> {
        Mcei0W::new(self, 16)
    }
    #[doc = "Bit 17 - Match or Capture Channel 1 Event Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mcei1(&mut self) -> Mcei1W<EvctrlSpec> {
        Mcei1W::new(self, 17)
    }
    #[doc = "Bit 18 - Match or Capture Channel 2 Event Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mcei2(&mut self) -> Mcei2W<EvctrlSpec> {
        Mcei2W::new(self, 18)
    }
    #[doc = "Bit 19 - Match or Capture Channel 3 Event Input Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mcei3(&mut self) -> Mcei3W<EvctrlSpec> {
        Mcei3W::new(self, 19)
    }
    #[doc = "Bit 24 - Match or Capture Channel 0 Event Output Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mceo0(&mut self) -> Mceo0W<EvctrlSpec> {
        Mceo0W::new(self, 24)
    }
    #[doc = "Bit 25 - Match or Capture Channel 1 Event Output Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mceo1(&mut self) -> Mceo1W<EvctrlSpec> {
        Mceo1W::new(self, 25)
    }
    #[doc = "Bit 26 - Match or Capture Channel 2 Event Output Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mceo2(&mut self) -> Mceo2W<EvctrlSpec> {
        Mceo2W::new(self, 26)
    }
    #[doc = "Bit 27 - Match or Capture Channel 3 Event Output Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mceo3(&mut self) -> Mceo3W<EvctrlSpec> {
        Mceo3W::new(self, 27)
    }
}
#[doc = "Event Control\n\nYou can [`read`](crate::Reg::read) this register and get [`evctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`evctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EvctrlSpec;
impl crate::RegisterSpec for EvctrlSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`evctrl::R`](R) reader structure"]
impl crate::Readable for EvctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`evctrl::W`](W) writer structure"]
impl crate::Writable for EvctrlSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets EVCTRL to value 0"]
impl crate::Resettable for EvctrlSpec {
    const RESET_VALUE: u32 = 0;
}