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
#[doc = "Reader of register SMCAPTCTRLA"]
pub type R = crate::R<u16, super::SMCAPTCTRLA>;
#[doc = "Writer for register SMCAPTCTRLA"]
pub type W = crate::W<u16, super::SMCAPTCTRLA>;
#[doc = "Register SMCAPTCTRLA `reset()`'s with value 0"]
impl crate::ResetValue for super::SMCAPTCTRLA {
    type Type = u16;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Arm A\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ARMA_A {
    #[doc = "0: Input capture operation is disabled."]
    ARMA_0 = 0,
    #[doc = "1: Input capture operation as specified by CAPTCTRLA\\[EDGAx\\]
is enabled."]
    ARMA_1 = 1,
}
impl From<ARMA_A> for bool {
    #[inline(always)]
    fn from(variant: ARMA_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ARMA`"]
pub type ARMA_R = crate::R<bool, ARMA_A>;
impl ARMA_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ARMA_A {
        match self.bits {
            false => ARMA_A::ARMA_0,
            true => ARMA_A::ARMA_1,
        }
    }
    #[doc = "Checks if the value of the field is `ARMA_0`"]
    #[inline(always)]
    pub fn is_arma_0(&self) -> bool {
        *self == ARMA_A::ARMA_0
    }
    #[doc = "Checks if the value of the field is `ARMA_1`"]
    #[inline(always)]
    pub fn is_arma_1(&self) -> bool {
        *self == ARMA_A::ARMA_1
    }
}
#[doc = "Write proxy for field `ARMA`"]
pub struct ARMA_W<'a> {
    w: &'a mut W,
}
impl<'a> ARMA_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ARMA_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Input capture operation is disabled."]
    #[inline(always)]
    pub fn arma_0(self) -> &'a mut W {
        self.variant(ARMA_A::ARMA_0)
    }
    #[doc = "Input capture operation as specified by CAPTCTRLA\\[EDGAx\\]
is enabled."]
    #[inline(always)]
    pub fn arma_1(self) -> &'a mut W {
        self.variant(ARMA_A::ARMA_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x01) | ((value as u16) & 0x01);
        self.w
    }
}
#[doc = "One Shot Mode A\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ONESHOTA_A {
    #[doc = "0: Free running mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after CAPTCTRLA\\[ARMA\\]
is set. Once a capture occurs, capture circuit 0 is disarmed and capture circuit 1 is armed. After capture circuit 1 performs a capture, it is disarmed and capture circuit 0 is re-armed. The process continues indefinitely.If only one of the capture circuits is enabled, then captures continue indefinitely on the enabled capture circuit."]
    ONESHOTA_0 = 0,
    #[doc = "1: One shot mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after CAPTCTRLA\\[ARMA\\]
is set. Once a capture occurs, capture circuit 0 is disarmed and capture circuit 1 is armed. After capture circuit 1 performs a capture, it is disarmed and CAPTCTRLA\\[ARMA\\]
is cleared. No further captures will be performed until CAPTCTRLA\\[ARMA\\]
is set again.If only one of the capture circuits is enabled, then a single capture will occur on the enabled capture circuit and CAPTCTRLA\\[ARMA\\]
is then cleared."]
    ONESHOTA_1 = 1,
}
impl From<ONESHOTA_A> for bool {
    #[inline(always)]
    fn from(variant: ONESHOTA_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ONESHOTA`"]
pub type ONESHOTA_R = crate::R<bool, ONESHOTA_A>;
impl ONESHOTA_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ONESHOTA_A {
        match self.bits {
            false => ONESHOTA_A::ONESHOTA_0,
            true => ONESHOTA_A::ONESHOTA_1,
        }
    }
    #[doc = "Checks if the value of the field is `ONESHOTA_0`"]
    #[inline(always)]
    pub fn is_oneshota_0(&self) -> bool {
        *self == ONESHOTA_A::ONESHOTA_0
    }
    #[doc = "Checks if the value of the field is `ONESHOTA_1`"]
    #[inline(always)]
    pub fn is_oneshota_1(&self) -> bool {
        *self == ONESHOTA_A::ONESHOTA_1
    }
}
#[doc = "Write proxy for field `ONESHOTA`"]
pub struct ONESHOTA_W<'a> {
    w: &'a mut W,
}
impl<'a> ONESHOTA_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ONESHOTA_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Free running mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after CAPTCTRLA\\[ARMA\\]
is set. Once a capture occurs, capture circuit 0 is disarmed and capture circuit 1 is armed. After capture circuit 1 performs a capture, it is disarmed and capture circuit 0 is re-armed. The process continues indefinitely.If only one of the capture circuits is enabled, then captures continue indefinitely on the enabled capture circuit."]
    #[inline(always)]
    pub fn oneshota_0(self) -> &'a mut W {
        self.variant(ONESHOTA_A::ONESHOTA_0)
    }
    #[doc = "One shot mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after CAPTCTRLA\\[ARMA\\]
is set. Once a capture occurs, capture circuit 0 is disarmed and capture circuit 1 is armed. After capture circuit 1 performs a capture, it is disarmed and CAPTCTRLA\\[ARMA\\]
is cleared. No further captures will be performed until CAPTCTRLA\\[ARMA\\]
is set again.If only one of the capture circuits is enabled, then a single capture will occur on the enabled capture circuit and CAPTCTRLA\\[ARMA\\]
is then cleared."]
    #[inline(always)]
    pub fn oneshota_1(self) -> &'a mut W {
        self.variant(ONESHOTA_A::ONESHOTA_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u16) & 0x01) << 1);
        self.w
    }
}
#[doc = "Edge A 0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum EDGA0_A {
    #[doc = "0: Disabled"]
    EDGA0_0 = 0,
    #[doc = "1: Capture falling edges"]
    EDGA0_1 = 1,
    #[doc = "2: Capture rising edges"]
    EDGA0_2 = 2,
    #[doc = "3: Capture any edge"]
    EDGA0_3 = 3,
}
impl From<EDGA0_A> for u8 {
    #[inline(always)]
    fn from(variant: EDGA0_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `EDGA0`"]
pub type EDGA0_R = crate::R<u8, EDGA0_A>;
impl EDGA0_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGA0_A {
        match self.bits {
            0 => EDGA0_A::EDGA0_0,
            1 => EDGA0_A::EDGA0_1,
            2 => EDGA0_A::EDGA0_2,
            3 => EDGA0_A::EDGA0_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `EDGA0_0`"]
    #[inline(always)]
    pub fn is_edga0_0(&self) -> bool {
        *self == EDGA0_A::EDGA0_0
    }
    #[doc = "Checks if the value of the field is `EDGA0_1`"]
    #[inline(always)]
    pub fn is_edga0_1(&self) -> bool {
        *self == EDGA0_A::EDGA0_1
    }
    #[doc = "Checks if the value of the field is `EDGA0_2`"]
    #[inline(always)]
    pub fn is_edga0_2(&self) -> bool {
        *self == EDGA0_A::EDGA0_2
    }
    #[doc = "Checks if the value of the field is `EDGA0_3`"]
    #[inline(always)]
    pub fn is_edga0_3(&self) -> bool {
        *self == EDGA0_A::EDGA0_3
    }
}
#[doc = "Write proxy for field `EDGA0`"]
pub struct EDGA0_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGA0_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGA0_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Disabled"]
    #[inline(always)]
    pub fn edga0_0(self) -> &'a mut W {
        self.variant(EDGA0_A::EDGA0_0)
    }
    #[doc = "Capture falling edges"]
    #[inline(always)]
    pub fn edga0_1(self) -> &'a mut W {
        self.variant(EDGA0_A::EDGA0_1)
    }
    #[doc = "Capture rising edges"]
    #[inline(always)]
    pub fn edga0_2(self) -> &'a mut W {
        self.variant(EDGA0_A::EDGA0_2)
    }
    #[doc = "Capture any edge"]
    #[inline(always)]
    pub fn edga0_3(self) -> &'a mut W {
        self.variant(EDGA0_A::EDGA0_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 2)) | (((value as u16) & 0x03) << 2);
        self.w
    }
}
#[doc = "Edge A 1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum EDGA1_A {
    #[doc = "0: Disabled"]
    EDGA1_0 = 0,
    #[doc = "1: Capture falling edges"]
    EDGA1_1 = 1,
    #[doc = "2: Capture rising edges"]
    EDGA1_2 = 2,
    #[doc = "3: Capture any edge"]
    EDGA1_3 = 3,
}
impl From<EDGA1_A> for u8 {
    #[inline(always)]
    fn from(variant: EDGA1_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `EDGA1`"]
pub type EDGA1_R = crate::R<u8, EDGA1_A>;
impl EDGA1_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGA1_A {
        match self.bits {
            0 => EDGA1_A::EDGA1_0,
            1 => EDGA1_A::EDGA1_1,
            2 => EDGA1_A::EDGA1_2,
            3 => EDGA1_A::EDGA1_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `EDGA1_0`"]
    #[inline(always)]
    pub fn is_edga1_0(&self) -> bool {
        *self == EDGA1_A::EDGA1_0
    }
    #[doc = "Checks if the value of the field is `EDGA1_1`"]
    #[inline(always)]
    pub fn is_edga1_1(&self) -> bool {
        *self == EDGA1_A::EDGA1_1
    }
    #[doc = "Checks if the value of the field is `EDGA1_2`"]
    #[inline(always)]
    pub fn is_edga1_2(&self) -> bool {
        *self == EDGA1_A::EDGA1_2
    }
    #[doc = "Checks if the value of the field is `EDGA1_3`"]
    #[inline(always)]
    pub fn is_edga1_3(&self) -> bool {
        *self == EDGA1_A::EDGA1_3
    }
}
#[doc = "Write proxy for field `EDGA1`"]
pub struct EDGA1_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGA1_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGA1_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Disabled"]
    #[inline(always)]
    pub fn edga1_0(self) -> &'a mut W {
        self.variant(EDGA1_A::EDGA1_0)
    }
    #[doc = "Capture falling edges"]
    #[inline(always)]
    pub fn edga1_1(self) -> &'a mut W {
        self.variant(EDGA1_A::EDGA1_1)
    }
    #[doc = "Capture rising edges"]
    #[inline(always)]
    pub fn edga1_2(self) -> &'a mut W {
        self.variant(EDGA1_A::EDGA1_2)
    }
    #[doc = "Capture any edge"]
    #[inline(always)]
    pub fn edga1_3(self) -> &'a mut W {
        self.variant(EDGA1_A::EDGA1_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u16) & 0x03) << 4);
        self.w
    }
}
#[doc = "Input Select A\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum INP_SELA_A {
    #[doc = "0: Raw PWM_A input signal selected as source."]
    INP_SELA_0 = 0,
    #[doc = "1: Output of edge counter/compare selected as source. Note that when this bitfield is set to 1, the internal edge counter is enabled and the rising and/or falling edges specified by the CAPTCTRLA\\[EDGA0\\]
and CAPTCTRLA\\[EDGA1\\]
fields are ignored. The software must still place a value other than 00 in either or both of the CAPTCTLRA\\[EDGA0\\]
and/or CAPTCTRLA\\[EDGA1\\]
fields in order to enable one or both of the capture registers."]
    INP_SELA_1 = 1,
}
impl From<INP_SELA_A> for bool {
    #[inline(always)]
    fn from(variant: INP_SELA_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `INP_SELA`"]
pub type INP_SELA_R = crate::R<bool, INP_SELA_A>;
impl INP_SELA_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> INP_SELA_A {
        match self.bits {
            false => INP_SELA_A::INP_SELA_0,
            true => INP_SELA_A::INP_SELA_1,
        }
    }
    #[doc = "Checks if the value of the field is `INP_SELA_0`"]
    #[inline(always)]
    pub fn is_inp_sela_0(&self) -> bool {
        *self == INP_SELA_A::INP_SELA_0
    }
    #[doc = "Checks if the value of the field is `INP_SELA_1`"]
    #[inline(always)]
    pub fn is_inp_sela_1(&self) -> bool {
        *self == INP_SELA_A::INP_SELA_1
    }
}
#[doc = "Write proxy for field `INP_SELA`"]
pub struct INP_SELA_W<'a> {
    w: &'a mut W,
}
impl<'a> INP_SELA_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: INP_SELA_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Raw PWM_A input signal selected as source."]
    #[inline(always)]
    pub fn inp_sela_0(self) -> &'a mut W {
        self.variant(INP_SELA_A::INP_SELA_0)
    }
    #[doc = "Output of edge counter/compare selected as source. Note that when this bitfield is set to 1, the internal edge counter is enabled and the rising and/or falling edges specified by the CAPTCTRLA\\[EDGA0\\]
and CAPTCTRLA\\[EDGA1\\]
fields are ignored. The software must still place a value other than 00 in either or both of the CAPTCTLRA\\[EDGA0\\]
and/or CAPTCTRLA\\[EDGA1\\]
fields in order to enable one or both of the capture registers."]
    #[inline(always)]
    pub fn inp_sela_1(self) -> &'a mut W {
        self.variant(INP_SELA_A::INP_SELA_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 6)) | (((value as u16) & 0x01) << 6);
        self.w
    }
}
#[doc = "Edge Counter A Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum EDGCNTA_EN_A {
    #[doc = "0: Edge counter disabled and held in reset"]
    EDGCNTA_EN_0 = 0,
    #[doc = "1: Edge counter enabled"]
    EDGCNTA_EN_1 = 1,
}
impl From<EDGCNTA_EN_A> for bool {
    #[inline(always)]
    fn from(variant: EDGCNTA_EN_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `EDGCNTA_EN`"]
pub type EDGCNTA_EN_R = crate::R<bool, EDGCNTA_EN_A>;
impl EDGCNTA_EN_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGCNTA_EN_A {
        match self.bits {
            false => EDGCNTA_EN_A::EDGCNTA_EN_0,
            true => EDGCNTA_EN_A::EDGCNTA_EN_1,
        }
    }
    #[doc = "Checks if the value of the field is `EDGCNTA_EN_0`"]
    #[inline(always)]
    pub fn is_edgcnta_en_0(&self) -> bool {
        *self == EDGCNTA_EN_A::EDGCNTA_EN_0
    }
    #[doc = "Checks if the value of the field is `EDGCNTA_EN_1`"]
    #[inline(always)]
    pub fn is_edgcnta_en_1(&self) -> bool {
        *self == EDGCNTA_EN_A::EDGCNTA_EN_1
    }
}
#[doc = "Write proxy for field `EDGCNTA_EN`"]
pub struct EDGCNTA_EN_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGCNTA_EN_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGCNTA_EN_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Edge counter disabled and held in reset"]
    #[inline(always)]
    pub fn edgcnta_en_0(self) -> &'a mut W {
        self.variant(EDGCNTA_EN_A::EDGCNTA_EN_0)
    }
    #[doc = "Edge counter enabled"]
    #[inline(always)]
    pub fn edgcnta_en_1(self) -> &'a mut W {
        self.variant(EDGCNTA_EN_A::EDGCNTA_EN_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u16) & 0x01) << 7);
        self.w
    }
}
#[doc = "Reader of field `CFAWM`"]
pub type CFAWM_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `CFAWM`"]
pub struct CFAWM_W<'a> {
    w: &'a mut W,
}
impl<'a> CFAWM_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 8)) | (((value as u16) & 0x03) << 8);
        self.w
    }
}
#[doc = "Reader of field `CA0CNT`"]
pub type CA0CNT_R = crate::R<u8, u8>;
#[doc = "Reader of field `CA1CNT`"]
pub type CA1CNT_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bit 0 - Arm A"]
    #[inline(always)]
    pub fn arma(&self) -> ARMA_R {
        ARMA_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - One Shot Mode A"]
    #[inline(always)]
    pub fn oneshota(&self) -> ONESHOTA_R {
        ONESHOTA_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bits 2:3 - Edge A 0"]
    #[inline(always)]
    pub fn edga0(&self) -> EDGA0_R {
        EDGA0_R::new(((self.bits >> 2) & 0x03) as u8)
    }
    #[doc = "Bits 4:5 - Edge A 1"]
    #[inline(always)]
    pub fn edga1(&self) -> EDGA1_R {
        EDGA1_R::new(((self.bits >> 4) & 0x03) as u8)
    }
    #[doc = "Bit 6 - Input Select A"]
    #[inline(always)]
    pub fn inp_sela(&self) -> INP_SELA_R {
        INP_SELA_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - Edge Counter A Enable"]
    #[inline(always)]
    pub fn edgcnta_en(&self) -> EDGCNTA_EN_R {
        EDGCNTA_EN_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bits 8:9 - Capture A FIFOs Water Mark"]
    #[inline(always)]
    pub fn cfawm(&self) -> CFAWM_R {
        CFAWM_R::new(((self.bits >> 8) & 0x03) as u8)
    }
    #[doc = "Bits 10:12 - Capture A0 FIFO Word Count"]
    #[inline(always)]
    pub fn ca0cnt(&self) -> CA0CNT_R {
        CA0CNT_R::new(((self.bits >> 10) & 0x07) as u8)
    }
    #[doc = "Bits 13:15 - Capture A1 FIFO Word Count"]
    #[inline(always)]
    pub fn ca1cnt(&self) -> CA1CNT_R {
        CA1CNT_R::new(((self.bits >> 13) & 0x07) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Arm A"]
    #[inline(always)]
    pub fn arma(&mut self) -> ARMA_W {
        ARMA_W { w: self }
    }
    #[doc = "Bit 1 - One Shot Mode A"]
    #[inline(always)]
    pub fn oneshota(&mut self) -> ONESHOTA_W {
        ONESHOTA_W { w: self }
    }
    #[doc = "Bits 2:3 - Edge A 0"]
    #[inline(always)]
    pub fn edga0(&mut self) -> EDGA0_W {
        EDGA0_W { w: self }
    }
    #[doc = "Bits 4:5 - Edge A 1"]
    #[inline(always)]
    pub fn edga1(&mut self) -> EDGA1_W {
        EDGA1_W { w: self }
    }
    #[doc = "Bit 6 - Input Select A"]
    #[inline(always)]
    pub fn inp_sela(&mut self) -> INP_SELA_W {
        INP_SELA_W { w: self }
    }
    #[doc = "Bit 7 - Edge Counter A Enable"]
    #[inline(always)]
    pub fn edgcnta_en(&mut self) -> EDGCNTA_EN_W {
        EDGCNTA_EN_W { w: self }
    }
    #[doc = "Bits 8:9 - Capture A FIFOs Water Mark"]
    #[inline(always)]
    pub fn cfawm(&mut self) -> CFAWM_W {
        CFAWM_W { w: self }
    }
}