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
#[doc = "Reader of register SMCAPTCTRLX"]
pub type R = crate::R<u16, super::SMCAPTCTRLX>;
#[doc = "Writer for register SMCAPTCTRLX"]
pub type W = crate::W<u16, super::SMCAPTCTRLX>;
#[doc = "Register SMCAPTCTRLX `reset()`'s with value 0"]
impl crate::ResetValue for super::SMCAPTCTRLX {
    type Type = u16;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Arm X\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ARMX_A {
    #[doc = "0: Input capture operation is disabled."]
    ARMX_0 = 0,
    #[doc = "1: Input capture operation as specified by CAPTCTRLX\\[EDGXx\\]
is enabled."]
    ARMX_1 = 1,
}
impl From<ARMX_A> for bool {
    #[inline(always)]
    fn from(variant: ARMX_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ARMX`"]
pub type ARMX_R = crate::R<bool, ARMX_A>;
impl ARMX_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ARMX_A {
        match self.bits {
            false => ARMX_A::ARMX_0,
            true => ARMX_A::ARMX_1,
        }
    }
    #[doc = "Checks if the value of the field is `ARMX_0`"]
    #[inline(always)]
    pub fn is_armx_0(&self) -> bool {
        *self == ARMX_A::ARMX_0
    }
    #[doc = "Checks if the value of the field is `ARMX_1`"]
    #[inline(always)]
    pub fn is_armx_1(&self) -> bool {
        *self == ARMX_A::ARMX_1
    }
}
#[doc = "Write proxy for field `ARMX`"]
pub struct ARMX_W<'a> {
    w: &'a mut W,
}
impl<'a> ARMX_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ARMX_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Input capture operation is disabled."]
    #[inline(always)]
    pub fn armx_0(self) -> &'a mut W {
        self.variant(ARMX_A::ARMX_0)
    }
    #[doc = "Input capture operation as specified by CAPTCTRLX\\[EDGXx\\]
is enabled."]
    #[inline(always)]
    pub fn armx_1(self) -> &'a mut W {
        self.variant(ARMX_A::ARMX_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 Aux\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ONESHOTX_A {
    #[doc = "0: Free running mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after the ARMX bit 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."]
    ONESHOTX_0 = 0,
    #[doc = "1: One shot mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after the ARMX bit 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 the ARMX bit is cleared. No further captures will be performed until the ARMX bit is set again.If only one of the capture circuits is enabled, then a single capture will occur on the enabled capture circuit and the ARMX bit is then cleared."]
    ONESHOTX_1 = 1,
}
impl From<ONESHOTX_A> for bool {
    #[inline(always)]
    fn from(variant: ONESHOTX_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ONESHOTX`"]
pub type ONESHOTX_R = crate::R<bool, ONESHOTX_A>;
impl ONESHOTX_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ONESHOTX_A {
        match self.bits {
            false => ONESHOTX_A::ONESHOTX_0,
            true => ONESHOTX_A::ONESHOTX_1,
        }
    }
    #[doc = "Checks if the value of the field is `ONESHOTX_0`"]
    #[inline(always)]
    pub fn is_oneshotx_0(&self) -> bool {
        *self == ONESHOTX_A::ONESHOTX_0
    }
    #[doc = "Checks if the value of the field is `ONESHOTX_1`"]
    #[inline(always)]
    pub fn is_oneshotx_1(&self) -> bool {
        *self == ONESHOTX_A::ONESHOTX_1
    }
}
#[doc = "Write proxy for field `ONESHOTX`"]
pub struct ONESHOTX_W<'a> {
    w: &'a mut W,
}
impl<'a> ONESHOTX_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ONESHOTX_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 the ARMX bit 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 oneshotx_0(self) -> &'a mut W {
        self.variant(ONESHOTX_A::ONESHOTX_0)
    }
    #[doc = "One shot mode is selected. If both capture circuits are enabled, then capture circuit 0 is armed first after the ARMX bit 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 the ARMX bit is cleared. No further captures will be performed until the ARMX bit is set again.If only one of the capture circuits is enabled, then a single capture will occur on the enabled capture circuit and the ARMX bit is then cleared."]
    #[inline(always)]
    pub fn oneshotx_1(self) -> &'a mut W {
        self.variant(ONESHOTX_A::ONESHOTX_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 X 0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum EDGX0_A {
    #[doc = "0: Disabled"]
    EDGX0_0 = 0,
    #[doc = "1: Capture falling edges"]
    EDGX0_1 = 1,
    #[doc = "2: Capture rising edges"]
    EDGX0_2 = 2,
    #[doc = "3: Capture any edge"]
    EDGX0_3 = 3,
}
impl From<EDGX0_A> for u8 {
    #[inline(always)]
    fn from(variant: EDGX0_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `EDGX0`"]
pub type EDGX0_R = crate::R<u8, EDGX0_A>;
impl EDGX0_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGX0_A {
        match self.bits {
            0 => EDGX0_A::EDGX0_0,
            1 => EDGX0_A::EDGX0_1,
            2 => EDGX0_A::EDGX0_2,
            3 => EDGX0_A::EDGX0_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `EDGX0_0`"]
    #[inline(always)]
    pub fn is_edgx0_0(&self) -> bool {
        *self == EDGX0_A::EDGX0_0
    }
    #[doc = "Checks if the value of the field is `EDGX0_1`"]
    #[inline(always)]
    pub fn is_edgx0_1(&self) -> bool {
        *self == EDGX0_A::EDGX0_1
    }
    #[doc = "Checks if the value of the field is `EDGX0_2`"]
    #[inline(always)]
    pub fn is_edgx0_2(&self) -> bool {
        *self == EDGX0_A::EDGX0_2
    }
    #[doc = "Checks if the value of the field is `EDGX0_3`"]
    #[inline(always)]
    pub fn is_edgx0_3(&self) -> bool {
        *self == EDGX0_A::EDGX0_3
    }
}
#[doc = "Write proxy for field `EDGX0`"]
pub struct EDGX0_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGX0_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGX0_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Disabled"]
    #[inline(always)]
    pub fn edgx0_0(self) -> &'a mut W {
        self.variant(EDGX0_A::EDGX0_0)
    }
    #[doc = "Capture falling edges"]
    #[inline(always)]
    pub fn edgx0_1(self) -> &'a mut W {
        self.variant(EDGX0_A::EDGX0_1)
    }
    #[doc = "Capture rising edges"]
    #[inline(always)]
    pub fn edgx0_2(self) -> &'a mut W {
        self.variant(EDGX0_A::EDGX0_2)
    }
    #[doc = "Capture any edge"]
    #[inline(always)]
    pub fn edgx0_3(self) -> &'a mut W {
        self.variant(EDGX0_A::EDGX0_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 X 1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum EDGX1_A {
    #[doc = "0: Disabled"]
    EDGX1_0 = 0,
    #[doc = "1: Capture falling edges"]
    EDGX1_1 = 1,
    #[doc = "2: Capture rising edges"]
    EDGX1_2 = 2,
    #[doc = "3: Capture any edge"]
    EDGX1_3 = 3,
}
impl From<EDGX1_A> for u8 {
    #[inline(always)]
    fn from(variant: EDGX1_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `EDGX1`"]
pub type EDGX1_R = crate::R<u8, EDGX1_A>;
impl EDGX1_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGX1_A {
        match self.bits {
            0 => EDGX1_A::EDGX1_0,
            1 => EDGX1_A::EDGX1_1,
            2 => EDGX1_A::EDGX1_2,
            3 => EDGX1_A::EDGX1_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `EDGX1_0`"]
    #[inline(always)]
    pub fn is_edgx1_0(&self) -> bool {
        *self == EDGX1_A::EDGX1_0
    }
    #[doc = "Checks if the value of the field is `EDGX1_1`"]
    #[inline(always)]
    pub fn is_edgx1_1(&self) -> bool {
        *self == EDGX1_A::EDGX1_1
    }
    #[doc = "Checks if the value of the field is `EDGX1_2`"]
    #[inline(always)]
    pub fn is_edgx1_2(&self) -> bool {
        *self == EDGX1_A::EDGX1_2
    }
    #[doc = "Checks if the value of the field is `EDGX1_3`"]
    #[inline(always)]
    pub fn is_edgx1_3(&self) -> bool {
        *self == EDGX1_A::EDGX1_3
    }
}
#[doc = "Write proxy for field `EDGX1`"]
pub struct EDGX1_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGX1_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGX1_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Disabled"]
    #[inline(always)]
    pub fn edgx1_0(self) -> &'a mut W {
        self.variant(EDGX1_A::EDGX1_0)
    }
    #[doc = "Capture falling edges"]
    #[inline(always)]
    pub fn edgx1_1(self) -> &'a mut W {
        self.variant(EDGX1_A::EDGX1_1)
    }
    #[doc = "Capture rising edges"]
    #[inline(always)]
    pub fn edgx1_2(self) -> &'a mut W {
        self.variant(EDGX1_A::EDGX1_2)
    }
    #[doc = "Capture any edge"]
    #[inline(always)]
    pub fn edgx1_3(self) -> &'a mut W {
        self.variant(EDGX1_A::EDGX1_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 X\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum INP_SELX_A {
    #[doc = "0: Raw PWM_X input signal selected as source."]
    INP_SELX_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 CAPTCTRLX\\[EDGX0\\]
and CAPTCTRLX\\[EDGX1\\]
fields are ignored. The software must still place a value other than 00 in either or both of the CAPTCTLRX\\[EDGX0\\]
and/or CAPTCTRLX\\[EDGX1\\]
fields in order to enable one or both of the capture registers."]
    INP_SELX_1 = 1,
}
impl From<INP_SELX_A> for bool {
    #[inline(always)]
    fn from(variant: INP_SELX_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `INP_SELX`"]
pub type INP_SELX_R = crate::R<bool, INP_SELX_A>;
impl INP_SELX_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> INP_SELX_A {
        match self.bits {
            false => INP_SELX_A::INP_SELX_0,
            true => INP_SELX_A::INP_SELX_1,
        }
    }
    #[doc = "Checks if the value of the field is `INP_SELX_0`"]
    #[inline(always)]
    pub fn is_inp_selx_0(&self) -> bool {
        *self == INP_SELX_A::INP_SELX_0
    }
    #[doc = "Checks if the value of the field is `INP_SELX_1`"]
    #[inline(always)]
    pub fn is_inp_selx_1(&self) -> bool {
        *self == INP_SELX_A::INP_SELX_1
    }
}
#[doc = "Write proxy for field `INP_SELX`"]
pub struct INP_SELX_W<'a> {
    w: &'a mut W,
}
impl<'a> INP_SELX_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: INP_SELX_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Raw PWM_X input signal selected as source."]
    #[inline(always)]
    pub fn inp_selx_0(self) -> &'a mut W {
        self.variant(INP_SELX_A::INP_SELX_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 CAPTCTRLX\\[EDGX0\\]
and CAPTCTRLX\\[EDGX1\\]
fields are ignored. The software must still place a value other than 00 in either or both of the CAPTCTLRX\\[EDGX0\\]
and/or CAPTCTRLX\\[EDGX1\\]
fields in order to enable one or both of the capture registers."]
    #[inline(always)]
    pub fn inp_selx_1(self) -> &'a mut W {
        self.variant(INP_SELX_A::INP_SELX_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 X Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum EDGCNTX_EN_A {
    #[doc = "0: Edge counter disabled and held in reset"]
    EDGCNTX_EN_0 = 0,
    #[doc = "1: Edge counter enabled"]
    EDGCNTX_EN_1 = 1,
}
impl From<EDGCNTX_EN_A> for bool {
    #[inline(always)]
    fn from(variant: EDGCNTX_EN_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `EDGCNTX_EN`"]
pub type EDGCNTX_EN_R = crate::R<bool, EDGCNTX_EN_A>;
impl EDGCNTX_EN_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> EDGCNTX_EN_A {
        match self.bits {
            false => EDGCNTX_EN_A::EDGCNTX_EN_0,
            true => EDGCNTX_EN_A::EDGCNTX_EN_1,
        }
    }
    #[doc = "Checks if the value of the field is `EDGCNTX_EN_0`"]
    #[inline(always)]
    pub fn is_edgcntx_en_0(&self) -> bool {
        *self == EDGCNTX_EN_A::EDGCNTX_EN_0
    }
    #[doc = "Checks if the value of the field is `EDGCNTX_EN_1`"]
    #[inline(always)]
    pub fn is_edgcntx_en_1(&self) -> bool {
        *self == EDGCNTX_EN_A::EDGCNTX_EN_1
    }
}
#[doc = "Write proxy for field `EDGCNTX_EN`"]
pub struct EDGCNTX_EN_W<'a> {
    w: &'a mut W,
}
impl<'a> EDGCNTX_EN_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: EDGCNTX_EN_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Edge counter disabled and held in reset"]
    #[inline(always)]
    pub fn edgcntx_en_0(self) -> &'a mut W {
        self.variant(EDGCNTX_EN_A::EDGCNTX_EN_0)
    }
    #[doc = "Edge counter enabled"]
    #[inline(always)]
    pub fn edgcntx_en_1(self) -> &'a mut W {
        self.variant(EDGCNTX_EN_A::EDGCNTX_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 `CFXWM`"]
pub type CFXWM_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `CFXWM`"]
pub struct CFXWM_W<'a> {
    w: &'a mut W,
}
impl<'a> CFXWM_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 `CX0CNT`"]
pub type CX0CNT_R = crate::R<u8, u8>;
#[doc = "Reader of field `CX1CNT`"]
pub type CX1CNT_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bit 0 - Arm X"]
    #[inline(always)]
    pub fn armx(&self) -> ARMX_R {
        ARMX_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - One Shot Mode Aux"]
    #[inline(always)]
    pub fn oneshotx(&self) -> ONESHOTX_R {
        ONESHOTX_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bits 2:3 - Edge X 0"]
    #[inline(always)]
    pub fn edgx0(&self) -> EDGX0_R {
        EDGX0_R::new(((self.bits >> 2) & 0x03) as u8)
    }
    #[doc = "Bits 4:5 - Edge X 1"]
    #[inline(always)]
    pub fn edgx1(&self) -> EDGX1_R {
        EDGX1_R::new(((self.bits >> 4) & 0x03) as u8)
    }
    #[doc = "Bit 6 - Input Select X"]
    #[inline(always)]
    pub fn inp_selx(&self) -> INP_SELX_R {
        INP_SELX_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - Edge Counter X Enable"]
    #[inline(always)]
    pub fn edgcntx_en(&self) -> EDGCNTX_EN_R {
        EDGCNTX_EN_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bits 8:9 - Capture X FIFOs Water Mark"]
    #[inline(always)]
    pub fn cfxwm(&self) -> CFXWM_R {
        CFXWM_R::new(((self.bits >> 8) & 0x03) as u8)
    }
    #[doc = "Bits 10:12 - Capture X0 FIFO Word Count"]
    #[inline(always)]
    pub fn cx0cnt(&self) -> CX0CNT_R {
        CX0CNT_R::new(((self.bits >> 10) & 0x07) as u8)
    }
    #[doc = "Bits 13:15 - Capture X1 FIFO Word Count"]
    #[inline(always)]
    pub fn cx1cnt(&self) -> CX1CNT_R {
        CX1CNT_R::new(((self.bits >> 13) & 0x07) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Arm X"]
    #[inline(always)]
    pub fn armx(&mut self) -> ARMX_W {
        ARMX_W { w: self }
    }
    #[doc = "Bit 1 - One Shot Mode Aux"]
    #[inline(always)]
    pub fn oneshotx(&mut self) -> ONESHOTX_W {
        ONESHOTX_W { w: self }
    }
    #[doc = "Bits 2:3 - Edge X 0"]
    #[inline(always)]
    pub fn edgx0(&mut self) -> EDGX0_W {
        EDGX0_W { w: self }
    }
    #[doc = "Bits 4:5 - Edge X 1"]
    #[inline(always)]
    pub fn edgx1(&mut self) -> EDGX1_W {
        EDGX1_W { w: self }
    }
    #[doc = "Bit 6 - Input Select X"]
    #[inline(always)]
    pub fn inp_selx(&mut self) -> INP_SELX_W {
        INP_SELX_W { w: self }
    }
    #[doc = "Bit 7 - Edge Counter X Enable"]
    #[inline(always)]
    pub fn edgcntx_en(&mut self) -> EDGCNTX_EN_W {
        EDGCNTX_EN_W { w: self }
    }
    #[doc = "Bits 8:9 - Capture X FIFOs Water Mark"]
    #[inline(always)]
    pub fn cfxwm(&mut self) -> CFXWM_W {
        CFXWM_W { w: self }
    }
}