ra6t2/gpt320/
gticasr.rs

1#[doc = "Register `GTICASR` reader"]
2pub struct R(crate::R<GTICASR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<GTICASR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<GTICASR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<GTICASR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `GTICASR` writer"]
17pub struct W(crate::W<GTICASR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<GTICASR_SPEC>;
20    #[inline(always)]
21    fn deref(&self) -> &Self::Target {
22        &self.0
23    }
24}
25impl core::ops::DerefMut for W {
26    #[inline(always)]
27    fn deref_mut(&mut self) -> &mut Self::Target {
28        &mut self.0
29    }
30}
31impl From<crate::W<GTICASR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<GTICASR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `ASGTRGAR` reader - GTETRGA Pin Rising Input Source GTCCRA Input Capture Enable"]
38pub type ASGTRGAR_R = crate::BitReader<ASGTRGAR_A>;
39#[doc = "GTETRGA Pin Rising Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum ASGTRGAR_A {
42    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTETRGA input"]
43    _0 = 0,
44    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTETRGA input"]
45    _1 = 1,
46}
47impl From<ASGTRGAR_A> for bool {
48    #[inline(always)]
49    fn from(variant: ASGTRGAR_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl ASGTRGAR_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> ASGTRGAR_A {
57        match self.bits {
58            false => ASGTRGAR_A::_0,
59            true => ASGTRGAR_A::_1,
60        }
61    }
62    #[doc = "Checks if the value of the field is `_0`"]
63    #[inline(always)]
64    pub fn is_0(&self) -> bool {
65        *self == ASGTRGAR_A::_0
66    }
67    #[doc = "Checks if the value of the field is `_1`"]
68    #[inline(always)]
69    pub fn is_1(&self) -> bool {
70        *self == ASGTRGAR_A::_1
71    }
72}
73#[doc = "Field `ASGTRGAR` writer - GTETRGA Pin Rising Input Source GTCCRA Input Capture Enable"]
74pub type ASGTRGAR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGAR_A, O>;
75impl<'a, const O: u8> ASGTRGAR_W<'a, O> {
76    #[doc = "GTCCRA input capture disabled on the rising edge of GTETRGA input"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(ASGTRGAR_A::_0)
80    }
81    #[doc = "GTCCRA input capture enabled on the rising edge of GTETRGA input"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(ASGTRGAR_A::_1)
85    }
86}
87#[doc = "Field `ASGTRGAF` reader - GTETRGA Pin Falling Input Source GTCCRA Input Capture Enable"]
88pub type ASGTRGAF_R = crate::BitReader<ASGTRGAF_A>;
89#[doc = "GTETRGA Pin Falling Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum ASGTRGAF_A {
92    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTETRGA input"]
93    _0 = 0,
94    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTETRGA input"]
95    _1 = 1,
96}
97impl From<ASGTRGAF_A> for bool {
98    #[inline(always)]
99    fn from(variant: ASGTRGAF_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl ASGTRGAF_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> ASGTRGAF_A {
107        match self.bits {
108            false => ASGTRGAF_A::_0,
109            true => ASGTRGAF_A::_1,
110        }
111    }
112    #[doc = "Checks if the value of the field is `_0`"]
113    #[inline(always)]
114    pub fn is_0(&self) -> bool {
115        *self == ASGTRGAF_A::_0
116    }
117    #[doc = "Checks if the value of the field is `_1`"]
118    #[inline(always)]
119    pub fn is_1(&self) -> bool {
120        *self == ASGTRGAF_A::_1
121    }
122}
123#[doc = "Field `ASGTRGAF` writer - GTETRGA Pin Falling Input Source GTCCRA Input Capture Enable"]
124pub type ASGTRGAF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGAF_A, O>;
125impl<'a, const O: u8> ASGTRGAF_W<'a, O> {
126    #[doc = "GTCCRA input capture disabled on the falling edge of GTETRGA input"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(ASGTRGAF_A::_0)
130    }
131    #[doc = "GTCCRA input capture enabled on the falling edge of GTETRGA input"]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(ASGTRGAF_A::_1)
135    }
136}
137#[doc = "Field `ASGTRGBR` reader - GTETRGB Pin Rising Input Source GTCCRA Input Capture Enable"]
138pub type ASGTRGBR_R = crate::BitReader<ASGTRGBR_A>;
139#[doc = "GTETRGB Pin Rising Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum ASGTRGBR_A {
142    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTETRGB input"]
143    _0 = 0,
144    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTETRGB input"]
145    _1 = 1,
146}
147impl From<ASGTRGBR_A> for bool {
148    #[inline(always)]
149    fn from(variant: ASGTRGBR_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl ASGTRGBR_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> ASGTRGBR_A {
157        match self.bits {
158            false => ASGTRGBR_A::_0,
159            true => ASGTRGBR_A::_1,
160        }
161    }
162    #[doc = "Checks if the value of the field is `_0`"]
163    #[inline(always)]
164    pub fn is_0(&self) -> bool {
165        *self == ASGTRGBR_A::_0
166    }
167    #[doc = "Checks if the value of the field is `_1`"]
168    #[inline(always)]
169    pub fn is_1(&self) -> bool {
170        *self == ASGTRGBR_A::_1
171    }
172}
173#[doc = "Field `ASGTRGBR` writer - GTETRGB Pin Rising Input Source GTCCRA Input Capture Enable"]
174pub type ASGTRGBR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGBR_A, O>;
175impl<'a, const O: u8> ASGTRGBR_W<'a, O> {
176    #[doc = "GTCCRA input capture disabled on the rising edge of GTETRGB input"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(ASGTRGBR_A::_0)
180    }
181    #[doc = "GTCCRA input capture enabled on the rising edge of GTETRGB input"]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(ASGTRGBR_A::_1)
185    }
186}
187#[doc = "Field `ASGTRGBF` reader - GTETRGB Pin Falling Input Source GTCCRA Input Capture Enable"]
188pub type ASGTRGBF_R = crate::BitReader<ASGTRGBF_A>;
189#[doc = "GTETRGB Pin Falling Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum ASGTRGBF_A {
192    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTETRGB input"]
193    _0 = 0,
194    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTETRGB input"]
195    _1 = 1,
196}
197impl From<ASGTRGBF_A> for bool {
198    #[inline(always)]
199    fn from(variant: ASGTRGBF_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl ASGTRGBF_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> ASGTRGBF_A {
207        match self.bits {
208            false => ASGTRGBF_A::_0,
209            true => ASGTRGBF_A::_1,
210        }
211    }
212    #[doc = "Checks if the value of the field is `_0`"]
213    #[inline(always)]
214    pub fn is_0(&self) -> bool {
215        *self == ASGTRGBF_A::_0
216    }
217    #[doc = "Checks if the value of the field is `_1`"]
218    #[inline(always)]
219    pub fn is_1(&self) -> bool {
220        *self == ASGTRGBF_A::_1
221    }
222}
223#[doc = "Field `ASGTRGBF` writer - GTETRGB Pin Falling Input Source GTCCRA Input Capture Enable"]
224pub type ASGTRGBF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGBF_A, O>;
225impl<'a, const O: u8> ASGTRGBF_W<'a, O> {
226    #[doc = "GTCCRA input capture disabled on the falling edge of GTETRGB input"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(ASGTRGBF_A::_0)
230    }
231    #[doc = "GTCCRA input capture enabled on the falling edge of GTETRGB input"]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(ASGTRGBF_A::_1)
235    }
236}
237#[doc = "Field `ASGTRGCR` reader - GTETRGC Pin Rising Input Source GTCCRA Input Capture Enable"]
238pub type ASGTRGCR_R = crate::BitReader<ASGTRGCR_A>;
239#[doc = "GTETRGC Pin Rising Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum ASGTRGCR_A {
242    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTETRGC input"]
243    _0 = 0,
244    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTETRGC input"]
245    _1 = 1,
246}
247impl From<ASGTRGCR_A> for bool {
248    #[inline(always)]
249    fn from(variant: ASGTRGCR_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl ASGTRGCR_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> ASGTRGCR_A {
257        match self.bits {
258            false => ASGTRGCR_A::_0,
259            true => ASGTRGCR_A::_1,
260        }
261    }
262    #[doc = "Checks if the value of the field is `_0`"]
263    #[inline(always)]
264    pub fn is_0(&self) -> bool {
265        *self == ASGTRGCR_A::_0
266    }
267    #[doc = "Checks if the value of the field is `_1`"]
268    #[inline(always)]
269    pub fn is_1(&self) -> bool {
270        *self == ASGTRGCR_A::_1
271    }
272}
273#[doc = "Field `ASGTRGCR` writer - GTETRGC Pin Rising Input Source GTCCRA Input Capture Enable"]
274pub type ASGTRGCR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGCR_A, O>;
275impl<'a, const O: u8> ASGTRGCR_W<'a, O> {
276    #[doc = "GTCCRA input capture disabled on the rising edge of GTETRGC input"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(ASGTRGCR_A::_0)
280    }
281    #[doc = "GTCCRA input capture enabled on the rising edge of GTETRGC input"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(ASGTRGCR_A::_1)
285    }
286}
287#[doc = "Field `ASGTRGCF` reader - GTETRGC Pin Falling Input Source GTCCRA Input Capture Enable"]
288pub type ASGTRGCF_R = crate::BitReader<ASGTRGCF_A>;
289#[doc = "GTETRGC Pin Falling Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum ASGTRGCF_A {
292    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTETRGC input"]
293    _0 = 0,
294    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTETRGC input"]
295    _1 = 1,
296}
297impl From<ASGTRGCF_A> for bool {
298    #[inline(always)]
299    fn from(variant: ASGTRGCF_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl ASGTRGCF_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> ASGTRGCF_A {
307        match self.bits {
308            false => ASGTRGCF_A::_0,
309            true => ASGTRGCF_A::_1,
310        }
311    }
312    #[doc = "Checks if the value of the field is `_0`"]
313    #[inline(always)]
314    pub fn is_0(&self) -> bool {
315        *self == ASGTRGCF_A::_0
316    }
317    #[doc = "Checks if the value of the field is `_1`"]
318    #[inline(always)]
319    pub fn is_1(&self) -> bool {
320        *self == ASGTRGCF_A::_1
321    }
322}
323#[doc = "Field `ASGTRGCF` writer - GTETRGC Pin Falling Input Source GTCCRA Input Capture Enable"]
324pub type ASGTRGCF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGCF_A, O>;
325impl<'a, const O: u8> ASGTRGCF_W<'a, O> {
326    #[doc = "GTCCRA input capture disabled on the falling edge of GTETRGC input"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(ASGTRGCF_A::_0)
330    }
331    #[doc = "GTCCRA input capture enabled on the falling edge of GTETRGC input"]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(ASGTRGCF_A::_1)
335    }
336}
337#[doc = "Field `ASGTRGDR` reader - GTETRGD Pin Rising Input Source GTCCRA Input Capture Enable"]
338pub type ASGTRGDR_R = crate::BitReader<ASGTRGDR_A>;
339#[doc = "GTETRGD Pin Rising Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum ASGTRGDR_A {
342    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTETRGD input"]
343    _0 = 0,
344    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTETRGD input"]
345    _1 = 1,
346}
347impl From<ASGTRGDR_A> for bool {
348    #[inline(always)]
349    fn from(variant: ASGTRGDR_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl ASGTRGDR_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> ASGTRGDR_A {
357        match self.bits {
358            false => ASGTRGDR_A::_0,
359            true => ASGTRGDR_A::_1,
360        }
361    }
362    #[doc = "Checks if the value of the field is `_0`"]
363    #[inline(always)]
364    pub fn is_0(&self) -> bool {
365        *self == ASGTRGDR_A::_0
366    }
367    #[doc = "Checks if the value of the field is `_1`"]
368    #[inline(always)]
369    pub fn is_1(&self) -> bool {
370        *self == ASGTRGDR_A::_1
371    }
372}
373#[doc = "Field `ASGTRGDR` writer - GTETRGD Pin Rising Input Source GTCCRA Input Capture Enable"]
374pub type ASGTRGDR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGDR_A, O>;
375impl<'a, const O: u8> ASGTRGDR_W<'a, O> {
376    #[doc = "GTCCRA input capture disabled on the rising edge of GTETRGD input"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(ASGTRGDR_A::_0)
380    }
381    #[doc = "GTCCRA input capture enabled on the rising edge of GTETRGD input"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(ASGTRGDR_A::_1)
385    }
386}
387#[doc = "Field `ASGTRGDF` reader - GTETRGD Pin Falling Input Source GTCCRA Input Capture Enable"]
388pub type ASGTRGDF_R = crate::BitReader<ASGTRGDF_A>;
389#[doc = "GTETRGD Pin Falling Input Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum ASGTRGDF_A {
392    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTETRGD input"]
393    _0 = 0,
394    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTETRGD input"]
395    _1 = 1,
396}
397impl From<ASGTRGDF_A> for bool {
398    #[inline(always)]
399    fn from(variant: ASGTRGDF_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl ASGTRGDF_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> ASGTRGDF_A {
407        match self.bits {
408            false => ASGTRGDF_A::_0,
409            true => ASGTRGDF_A::_1,
410        }
411    }
412    #[doc = "Checks if the value of the field is `_0`"]
413    #[inline(always)]
414    pub fn is_0(&self) -> bool {
415        *self == ASGTRGDF_A::_0
416    }
417    #[doc = "Checks if the value of the field is `_1`"]
418    #[inline(always)]
419    pub fn is_1(&self) -> bool {
420        *self == ASGTRGDF_A::_1
421    }
422}
423#[doc = "Field `ASGTRGDF` writer - GTETRGD Pin Falling Input Source GTCCRA Input Capture Enable"]
424pub type ASGTRGDF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASGTRGDF_A, O>;
425impl<'a, const O: u8> ASGTRGDF_W<'a, O> {
426    #[doc = "GTCCRA input capture disabled on the falling edge of GTETRGD input"]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(ASGTRGDF_A::_0)
430    }
431    #[doc = "GTCCRA input capture enabled on the falling edge of GTETRGD input"]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(ASGTRGDF_A::_1)
435    }
436}
437#[doc = "Field `ASCARBL` reader - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
438pub type ASCARBL_R = crate::BitReader<ASCARBL_A>;
439#[doc = "GTIOCnA Pin Rising Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum ASCARBL_A {
442    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
443    _0 = 0,
444    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
445    _1 = 1,
446}
447impl From<ASCARBL_A> for bool {
448    #[inline(always)]
449    fn from(variant: ASCARBL_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl ASCARBL_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> ASCARBL_A {
457        match self.bits {
458            false => ASCARBL_A::_0,
459            true => ASCARBL_A::_1,
460        }
461    }
462    #[doc = "Checks if the value of the field is `_0`"]
463    #[inline(always)]
464    pub fn is_0(&self) -> bool {
465        *self == ASCARBL_A::_0
466    }
467    #[doc = "Checks if the value of the field is `_1`"]
468    #[inline(always)]
469    pub fn is_1(&self) -> bool {
470        *self == ASCARBL_A::_1
471    }
472}
473#[doc = "Field `ASCARBL` writer - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
474pub type ASCARBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCARBL_A, O>;
475impl<'a, const O: u8> ASCARBL_W<'a, O> {
476    #[doc = "GTCCRA input capture disabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(ASCARBL_A::_0)
480    }
481    #[doc = "GTCCRA input capture enabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(ASCARBL_A::_1)
485    }
486}
487#[doc = "Field `ASCARBH` reader - GTIOCnA Pin Rising Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
488pub type ASCARBH_R = crate::BitReader<ASCARBH_A>;
489#[doc = "GTIOCnA Pin Rising Input during GTIOCnB Value High Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum ASCARBH_A {
492    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
493    _0 = 0,
494    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
495    _1 = 1,
496}
497impl From<ASCARBH_A> for bool {
498    #[inline(always)]
499    fn from(variant: ASCARBH_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl ASCARBH_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> ASCARBH_A {
507        match self.bits {
508            false => ASCARBH_A::_0,
509            true => ASCARBH_A::_1,
510        }
511    }
512    #[doc = "Checks if the value of the field is `_0`"]
513    #[inline(always)]
514    pub fn is_0(&self) -> bool {
515        *self == ASCARBH_A::_0
516    }
517    #[doc = "Checks if the value of the field is `_1`"]
518    #[inline(always)]
519    pub fn is_1(&self) -> bool {
520        *self == ASCARBH_A::_1
521    }
522}
523#[doc = "Field `ASCARBH` writer - GTIOCnA Pin Rising Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
524pub type ASCARBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCARBH_A, O>;
525impl<'a, const O: u8> ASCARBH_W<'a, O> {
526    #[doc = "GTCCRA input capture disabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(ASCARBH_A::_0)
530    }
531    #[doc = "GTCCRA input capture enabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(ASCARBH_A::_1)
535    }
536}
537#[doc = "Field `ASCAFBL` reader - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
538pub type ASCAFBL_R = crate::BitReader<ASCAFBL_A>;
539#[doc = "GTIOCnA Pin Falling Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum ASCAFBL_A {
542    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
543    _0 = 0,
544    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
545    _1 = 1,
546}
547impl From<ASCAFBL_A> for bool {
548    #[inline(always)]
549    fn from(variant: ASCAFBL_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl ASCAFBL_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> ASCAFBL_A {
557        match self.bits {
558            false => ASCAFBL_A::_0,
559            true => ASCAFBL_A::_1,
560        }
561    }
562    #[doc = "Checks if the value of the field is `_0`"]
563    #[inline(always)]
564    pub fn is_0(&self) -> bool {
565        *self == ASCAFBL_A::_0
566    }
567    #[doc = "Checks if the value of the field is `_1`"]
568    #[inline(always)]
569    pub fn is_1(&self) -> bool {
570        *self == ASCAFBL_A::_1
571    }
572}
573#[doc = "Field `ASCAFBL` writer - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
574pub type ASCAFBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCAFBL_A, O>;
575impl<'a, const O: u8> ASCAFBL_W<'a, O> {
576    #[doc = "GTCCRA input capture disabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(ASCAFBL_A::_0)
580    }
581    #[doc = "GTCCRA input capture enabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(ASCAFBL_A::_1)
585    }
586}
587#[doc = "Field `ASCAFBH` reader - GTIOCnA Pin Falling Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
588pub type ASCAFBH_R = crate::BitReader<ASCAFBH_A>;
589#[doc = "GTIOCnA Pin Falling Input during GTIOCnB Value High Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum ASCAFBH_A {
592    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
593    _0 = 0,
594    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
595    _1 = 1,
596}
597impl From<ASCAFBH_A> for bool {
598    #[inline(always)]
599    fn from(variant: ASCAFBH_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl ASCAFBH_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> ASCAFBH_A {
607        match self.bits {
608            false => ASCAFBH_A::_0,
609            true => ASCAFBH_A::_1,
610        }
611    }
612    #[doc = "Checks if the value of the field is `_0`"]
613    #[inline(always)]
614    pub fn is_0(&self) -> bool {
615        *self == ASCAFBH_A::_0
616    }
617    #[doc = "Checks if the value of the field is `_1`"]
618    #[inline(always)]
619    pub fn is_1(&self) -> bool {
620        *self == ASCAFBH_A::_1
621    }
622}
623#[doc = "Field `ASCAFBH` writer - GTIOCnA Pin Falling Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
624pub type ASCAFBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCAFBH_A, O>;
625impl<'a, const O: u8> ASCAFBH_W<'a, O> {
626    #[doc = "GTCCRA input capture disabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(ASCAFBH_A::_0)
630    }
631    #[doc = "GTCCRA input capture enabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(ASCAFBH_A::_1)
635    }
636}
637#[doc = "Field `ASCBRAL` reader - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
638pub type ASCBRAL_R = crate::BitReader<ASCBRAL_A>;
639#[doc = "GTIOCnB Pin Rising Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum ASCBRAL_A {
642    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
643    _0 = 0,
644    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
645    _1 = 1,
646}
647impl From<ASCBRAL_A> for bool {
648    #[inline(always)]
649    fn from(variant: ASCBRAL_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl ASCBRAL_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> ASCBRAL_A {
657        match self.bits {
658            false => ASCBRAL_A::_0,
659            true => ASCBRAL_A::_1,
660        }
661    }
662    #[doc = "Checks if the value of the field is `_0`"]
663    #[inline(always)]
664    pub fn is_0(&self) -> bool {
665        *self == ASCBRAL_A::_0
666    }
667    #[doc = "Checks if the value of the field is `_1`"]
668    #[inline(always)]
669    pub fn is_1(&self) -> bool {
670        *self == ASCBRAL_A::_1
671    }
672}
673#[doc = "Field `ASCBRAL` writer - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
674pub type ASCBRAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCBRAL_A, O>;
675impl<'a, const O: u8> ASCBRAL_W<'a, O> {
676    #[doc = "GTCCRA input capture disabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(ASCBRAL_A::_0)
680    }
681    #[doc = "GTCCRA input capture enabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(ASCBRAL_A::_1)
685    }
686}
687#[doc = "Field `ASCBRAH` reader - GTIOCnB Pin Rising Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
688pub type ASCBRAH_R = crate::BitReader<ASCBRAH_A>;
689#[doc = "GTIOCnB Pin Rising Input during GTIOCnA Value High Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum ASCBRAH_A {
692    #[doc = "0: GTCCRA input capture disabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
693    _0 = 0,
694    #[doc = "1: GTCCRA input capture enabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
695    _1 = 1,
696}
697impl From<ASCBRAH_A> for bool {
698    #[inline(always)]
699    fn from(variant: ASCBRAH_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl ASCBRAH_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> ASCBRAH_A {
707        match self.bits {
708            false => ASCBRAH_A::_0,
709            true => ASCBRAH_A::_1,
710        }
711    }
712    #[doc = "Checks if the value of the field is `_0`"]
713    #[inline(always)]
714    pub fn is_0(&self) -> bool {
715        *self == ASCBRAH_A::_0
716    }
717    #[doc = "Checks if the value of the field is `_1`"]
718    #[inline(always)]
719    pub fn is_1(&self) -> bool {
720        *self == ASCBRAH_A::_1
721    }
722}
723#[doc = "Field `ASCBRAH` writer - GTIOCnB Pin Rising Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
724pub type ASCBRAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCBRAH_A, O>;
725impl<'a, const O: u8> ASCBRAH_W<'a, O> {
726    #[doc = "GTCCRA input capture disabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(ASCBRAH_A::_0)
730    }
731    #[doc = "GTCCRA input capture enabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(ASCBRAH_A::_1)
735    }
736}
737#[doc = "Field `ASCBFAL` reader - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
738pub type ASCBFAL_R = crate::BitReader<ASCBFAL_A>;
739#[doc = "GTIOCnB Pin Falling Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum ASCBFAL_A {
742    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
743    _0 = 0,
744    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
745    _1 = 1,
746}
747impl From<ASCBFAL_A> for bool {
748    #[inline(always)]
749    fn from(variant: ASCBFAL_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl ASCBFAL_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> ASCBFAL_A {
757        match self.bits {
758            false => ASCBFAL_A::_0,
759            true => ASCBFAL_A::_1,
760        }
761    }
762    #[doc = "Checks if the value of the field is `_0`"]
763    #[inline(always)]
764    pub fn is_0(&self) -> bool {
765        *self == ASCBFAL_A::_0
766    }
767    #[doc = "Checks if the value of the field is `_1`"]
768    #[inline(always)]
769    pub fn is_1(&self) -> bool {
770        *self == ASCBFAL_A::_1
771    }
772}
773#[doc = "Field `ASCBFAL` writer - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
774pub type ASCBFAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCBFAL_A, O>;
775impl<'a, const O: u8> ASCBFAL_W<'a, O> {
776    #[doc = "GTCCRA input capture disabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(ASCBFAL_A::_0)
780    }
781    #[doc = "GTCCRA input capture enabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(ASCBFAL_A::_1)
785    }
786}
787#[doc = "Field `ASCBFAH` reader - GTIOCnB Pin Falling Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
788pub type ASCBFAH_R = crate::BitReader<ASCBFAH_A>;
789#[doc = "GTIOCnB Pin Falling Input during GTIOCnA Value High Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum ASCBFAH_A {
792    #[doc = "0: GTCCRA input capture disabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
793    _0 = 0,
794    #[doc = "1: GTCCRA input capture enabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
795    _1 = 1,
796}
797impl From<ASCBFAH_A> for bool {
798    #[inline(always)]
799    fn from(variant: ASCBFAH_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl ASCBFAH_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> ASCBFAH_A {
807        match self.bits {
808            false => ASCBFAH_A::_0,
809            true => ASCBFAH_A::_1,
810        }
811    }
812    #[doc = "Checks if the value of the field is `_0`"]
813    #[inline(always)]
814    pub fn is_0(&self) -> bool {
815        *self == ASCBFAH_A::_0
816    }
817    #[doc = "Checks if the value of the field is `_1`"]
818    #[inline(always)]
819    pub fn is_1(&self) -> bool {
820        *self == ASCBFAH_A::_1
821    }
822}
823#[doc = "Field `ASCBFAH` writer - GTIOCnB Pin Falling Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
824pub type ASCBFAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASCBFAH_A, O>;
825impl<'a, const O: u8> ASCBFAH_W<'a, O> {
826    #[doc = "GTCCRA input capture disabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(ASCBFAH_A::_0)
830    }
831    #[doc = "GTCCRA input capture enabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(ASCBFAH_A::_1)
835    }
836}
837#[doc = "Field `ASELCA` reader - ELC_GPTA Event Source GTCCRA Input Capture Enable"]
838pub type ASELCA_R = crate::BitReader<ASELCA_A>;
839#[doc = "ELC_GPTA Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum ASELCA_A {
842    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTA input"]
843    _0 = 0,
844    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTA input"]
845    _1 = 1,
846}
847impl From<ASELCA_A> for bool {
848    #[inline(always)]
849    fn from(variant: ASELCA_A) -> Self {
850        variant as u8 != 0
851    }
852}
853impl ASELCA_R {
854    #[doc = "Get enumerated values variant"]
855    #[inline(always)]
856    pub fn variant(&self) -> ASELCA_A {
857        match self.bits {
858            false => ASELCA_A::_0,
859            true => ASELCA_A::_1,
860        }
861    }
862    #[doc = "Checks if the value of the field is `_0`"]
863    #[inline(always)]
864    pub fn is_0(&self) -> bool {
865        *self == ASELCA_A::_0
866    }
867    #[doc = "Checks if the value of the field is `_1`"]
868    #[inline(always)]
869    pub fn is_1(&self) -> bool {
870        *self == ASELCA_A::_1
871    }
872}
873#[doc = "Field `ASELCA` writer - ELC_GPTA Event Source GTCCRA Input Capture Enable"]
874pub type ASELCA_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCA_A, O>;
875impl<'a, const O: u8> ASELCA_W<'a, O> {
876    #[doc = "GTCCRA input capture disabled at the ELC_GPTA input"]
877    #[inline(always)]
878    pub fn _0(self) -> &'a mut W {
879        self.variant(ASELCA_A::_0)
880    }
881    #[doc = "GTCCRA input capture enabled at the ELC_GPTA input"]
882    #[inline(always)]
883    pub fn _1(self) -> &'a mut W {
884        self.variant(ASELCA_A::_1)
885    }
886}
887#[doc = "Field `ASELCB` reader - ELC_GPTB Event Source GTCCRA Input Capture Enable"]
888pub type ASELCB_R = crate::BitReader<ASELCB_A>;
889#[doc = "ELC_GPTB Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
890#[derive(Clone, Copy, Debug, PartialEq, Eq)]
891pub enum ASELCB_A {
892    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTB input"]
893    _0 = 0,
894    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTB input"]
895    _1 = 1,
896}
897impl From<ASELCB_A> for bool {
898    #[inline(always)]
899    fn from(variant: ASELCB_A) -> Self {
900        variant as u8 != 0
901    }
902}
903impl ASELCB_R {
904    #[doc = "Get enumerated values variant"]
905    #[inline(always)]
906    pub fn variant(&self) -> ASELCB_A {
907        match self.bits {
908            false => ASELCB_A::_0,
909            true => ASELCB_A::_1,
910        }
911    }
912    #[doc = "Checks if the value of the field is `_0`"]
913    #[inline(always)]
914    pub fn is_0(&self) -> bool {
915        *self == ASELCB_A::_0
916    }
917    #[doc = "Checks if the value of the field is `_1`"]
918    #[inline(always)]
919    pub fn is_1(&self) -> bool {
920        *self == ASELCB_A::_1
921    }
922}
923#[doc = "Field `ASELCB` writer - ELC_GPTB Event Source GTCCRA Input Capture Enable"]
924pub type ASELCB_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCB_A, O>;
925impl<'a, const O: u8> ASELCB_W<'a, O> {
926    #[doc = "GTCCRA input capture disabled at the ELC_GPTB input"]
927    #[inline(always)]
928    pub fn _0(self) -> &'a mut W {
929        self.variant(ASELCB_A::_0)
930    }
931    #[doc = "GTCCRA input capture enabled at the ELC_GPTB input"]
932    #[inline(always)]
933    pub fn _1(self) -> &'a mut W {
934        self.variant(ASELCB_A::_1)
935    }
936}
937#[doc = "Field `ASELCC` reader - ELC_GPTC Event Source GTCCRA Input Capture Enable"]
938pub type ASELCC_R = crate::BitReader<ASELCC_A>;
939#[doc = "ELC_GPTC Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
940#[derive(Clone, Copy, Debug, PartialEq, Eq)]
941pub enum ASELCC_A {
942    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTC input"]
943    _0 = 0,
944    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTC input"]
945    _1 = 1,
946}
947impl From<ASELCC_A> for bool {
948    #[inline(always)]
949    fn from(variant: ASELCC_A) -> Self {
950        variant as u8 != 0
951    }
952}
953impl ASELCC_R {
954    #[doc = "Get enumerated values variant"]
955    #[inline(always)]
956    pub fn variant(&self) -> ASELCC_A {
957        match self.bits {
958            false => ASELCC_A::_0,
959            true => ASELCC_A::_1,
960        }
961    }
962    #[doc = "Checks if the value of the field is `_0`"]
963    #[inline(always)]
964    pub fn is_0(&self) -> bool {
965        *self == ASELCC_A::_0
966    }
967    #[doc = "Checks if the value of the field is `_1`"]
968    #[inline(always)]
969    pub fn is_1(&self) -> bool {
970        *self == ASELCC_A::_1
971    }
972}
973#[doc = "Field `ASELCC` writer - ELC_GPTC Event Source GTCCRA Input Capture Enable"]
974pub type ASELCC_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCC_A, O>;
975impl<'a, const O: u8> ASELCC_W<'a, O> {
976    #[doc = "GTCCRA input capture disabled at the ELC_GPTC input"]
977    #[inline(always)]
978    pub fn _0(self) -> &'a mut W {
979        self.variant(ASELCC_A::_0)
980    }
981    #[doc = "GTCCRA input capture enabled at the ELC_GPTC input"]
982    #[inline(always)]
983    pub fn _1(self) -> &'a mut W {
984        self.variant(ASELCC_A::_1)
985    }
986}
987#[doc = "Field `ASELCD` reader - ELC_GPTD Event Source GTCCRA Input Capture Enable"]
988pub type ASELCD_R = crate::BitReader<ASELCD_A>;
989#[doc = "ELC_GPTD Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
990#[derive(Clone, Copy, Debug, PartialEq, Eq)]
991pub enum ASELCD_A {
992    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTD input"]
993    _0 = 0,
994    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTD input"]
995    _1 = 1,
996}
997impl From<ASELCD_A> for bool {
998    #[inline(always)]
999    fn from(variant: ASELCD_A) -> Self {
1000        variant as u8 != 0
1001    }
1002}
1003impl ASELCD_R {
1004    #[doc = "Get enumerated values variant"]
1005    #[inline(always)]
1006    pub fn variant(&self) -> ASELCD_A {
1007        match self.bits {
1008            false => ASELCD_A::_0,
1009            true => ASELCD_A::_1,
1010        }
1011    }
1012    #[doc = "Checks if the value of the field is `_0`"]
1013    #[inline(always)]
1014    pub fn is_0(&self) -> bool {
1015        *self == ASELCD_A::_0
1016    }
1017    #[doc = "Checks if the value of the field is `_1`"]
1018    #[inline(always)]
1019    pub fn is_1(&self) -> bool {
1020        *self == ASELCD_A::_1
1021    }
1022}
1023#[doc = "Field `ASELCD` writer - ELC_GPTD Event Source GTCCRA Input Capture Enable"]
1024pub type ASELCD_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCD_A, O>;
1025impl<'a, const O: u8> ASELCD_W<'a, O> {
1026    #[doc = "GTCCRA input capture disabled at the ELC_GPTD input"]
1027    #[inline(always)]
1028    pub fn _0(self) -> &'a mut W {
1029        self.variant(ASELCD_A::_0)
1030    }
1031    #[doc = "GTCCRA input capture enabled at the ELC_GPTD input"]
1032    #[inline(always)]
1033    pub fn _1(self) -> &'a mut W {
1034        self.variant(ASELCD_A::_1)
1035    }
1036}
1037#[doc = "Field `ASELCE` reader - ELC_GPTE Event Source GTCCRA Input Capture Enable"]
1038pub type ASELCE_R = crate::BitReader<ASELCE_A>;
1039#[doc = "ELC_GPTE Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
1040#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1041pub enum ASELCE_A {
1042    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTE input"]
1043    _0 = 0,
1044    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTE input"]
1045    _1 = 1,
1046}
1047impl From<ASELCE_A> for bool {
1048    #[inline(always)]
1049    fn from(variant: ASELCE_A) -> Self {
1050        variant as u8 != 0
1051    }
1052}
1053impl ASELCE_R {
1054    #[doc = "Get enumerated values variant"]
1055    #[inline(always)]
1056    pub fn variant(&self) -> ASELCE_A {
1057        match self.bits {
1058            false => ASELCE_A::_0,
1059            true => ASELCE_A::_1,
1060        }
1061    }
1062    #[doc = "Checks if the value of the field is `_0`"]
1063    #[inline(always)]
1064    pub fn is_0(&self) -> bool {
1065        *self == ASELCE_A::_0
1066    }
1067    #[doc = "Checks if the value of the field is `_1`"]
1068    #[inline(always)]
1069    pub fn is_1(&self) -> bool {
1070        *self == ASELCE_A::_1
1071    }
1072}
1073#[doc = "Field `ASELCE` writer - ELC_GPTE Event Source GTCCRA Input Capture Enable"]
1074pub type ASELCE_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCE_A, O>;
1075impl<'a, const O: u8> ASELCE_W<'a, O> {
1076    #[doc = "GTCCRA input capture disabled at the ELC_GPTE input"]
1077    #[inline(always)]
1078    pub fn _0(self) -> &'a mut W {
1079        self.variant(ASELCE_A::_0)
1080    }
1081    #[doc = "GTCCRA input capture enabled at the ELC_GPTE input"]
1082    #[inline(always)]
1083    pub fn _1(self) -> &'a mut W {
1084        self.variant(ASELCE_A::_1)
1085    }
1086}
1087#[doc = "Field `ASELCF` reader - ELC_GPTF Event Source GTCCRA Input Capture Enable"]
1088pub type ASELCF_R = crate::BitReader<ASELCF_A>;
1089#[doc = "ELC_GPTF Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
1090#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1091pub enum ASELCF_A {
1092    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTF input"]
1093    _0 = 0,
1094    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTF input"]
1095    _1 = 1,
1096}
1097impl From<ASELCF_A> for bool {
1098    #[inline(always)]
1099    fn from(variant: ASELCF_A) -> Self {
1100        variant as u8 != 0
1101    }
1102}
1103impl ASELCF_R {
1104    #[doc = "Get enumerated values variant"]
1105    #[inline(always)]
1106    pub fn variant(&self) -> ASELCF_A {
1107        match self.bits {
1108            false => ASELCF_A::_0,
1109            true => ASELCF_A::_1,
1110        }
1111    }
1112    #[doc = "Checks if the value of the field is `_0`"]
1113    #[inline(always)]
1114    pub fn is_0(&self) -> bool {
1115        *self == ASELCF_A::_0
1116    }
1117    #[doc = "Checks if the value of the field is `_1`"]
1118    #[inline(always)]
1119    pub fn is_1(&self) -> bool {
1120        *self == ASELCF_A::_1
1121    }
1122}
1123#[doc = "Field `ASELCF` writer - ELC_GPTF Event Source GTCCRA Input Capture Enable"]
1124pub type ASELCF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCF_A, O>;
1125impl<'a, const O: u8> ASELCF_W<'a, O> {
1126    #[doc = "GTCCRA input capture disabled at the ELC_GPTF input"]
1127    #[inline(always)]
1128    pub fn _0(self) -> &'a mut W {
1129        self.variant(ASELCF_A::_0)
1130    }
1131    #[doc = "GTCCRA input capture enabled at the ELC_GPTF input"]
1132    #[inline(always)]
1133    pub fn _1(self) -> &'a mut W {
1134        self.variant(ASELCF_A::_1)
1135    }
1136}
1137#[doc = "Field `ASELCG` reader - ELC_GPTG Event Source GTCCRA Input Capture Enable"]
1138pub type ASELCG_R = crate::BitReader<ASELCG_A>;
1139#[doc = "ELC_GPTG Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
1140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1141pub enum ASELCG_A {
1142    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTG input"]
1143    _0 = 0,
1144    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTG input"]
1145    _1 = 1,
1146}
1147impl From<ASELCG_A> for bool {
1148    #[inline(always)]
1149    fn from(variant: ASELCG_A) -> Self {
1150        variant as u8 != 0
1151    }
1152}
1153impl ASELCG_R {
1154    #[doc = "Get enumerated values variant"]
1155    #[inline(always)]
1156    pub fn variant(&self) -> ASELCG_A {
1157        match self.bits {
1158            false => ASELCG_A::_0,
1159            true => ASELCG_A::_1,
1160        }
1161    }
1162    #[doc = "Checks if the value of the field is `_0`"]
1163    #[inline(always)]
1164    pub fn is_0(&self) -> bool {
1165        *self == ASELCG_A::_0
1166    }
1167    #[doc = "Checks if the value of the field is `_1`"]
1168    #[inline(always)]
1169    pub fn is_1(&self) -> bool {
1170        *self == ASELCG_A::_1
1171    }
1172}
1173#[doc = "Field `ASELCG` writer - ELC_GPTG Event Source GTCCRA Input Capture Enable"]
1174pub type ASELCG_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCG_A, O>;
1175impl<'a, const O: u8> ASELCG_W<'a, O> {
1176    #[doc = "GTCCRA input capture disabled at the ELC_GPTG input"]
1177    #[inline(always)]
1178    pub fn _0(self) -> &'a mut W {
1179        self.variant(ASELCG_A::_0)
1180    }
1181    #[doc = "GTCCRA input capture enabled at the ELC_GPTG input"]
1182    #[inline(always)]
1183    pub fn _1(self) -> &'a mut W {
1184        self.variant(ASELCG_A::_1)
1185    }
1186}
1187#[doc = "Field `ASELCH` reader - ELC_GPTH Event Source GTCCRA Input Capture Enable"]
1188pub type ASELCH_R = crate::BitReader<ASELCH_A>;
1189#[doc = "ELC_GPTH Event Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
1190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1191pub enum ASELCH_A {
1192    #[doc = "0: GTCCRA input capture disabled at the ELC_GPTH input"]
1193    _0 = 0,
1194    #[doc = "1: GTCCRA input capture enabled at the ELC_GPTH input"]
1195    _1 = 1,
1196}
1197impl From<ASELCH_A> for bool {
1198    #[inline(always)]
1199    fn from(variant: ASELCH_A) -> Self {
1200        variant as u8 != 0
1201    }
1202}
1203impl ASELCH_R {
1204    #[doc = "Get enumerated values variant"]
1205    #[inline(always)]
1206    pub fn variant(&self) -> ASELCH_A {
1207        match self.bits {
1208            false => ASELCH_A::_0,
1209            true => ASELCH_A::_1,
1210        }
1211    }
1212    #[doc = "Checks if the value of the field is `_0`"]
1213    #[inline(always)]
1214    pub fn is_0(&self) -> bool {
1215        *self == ASELCH_A::_0
1216    }
1217    #[doc = "Checks if the value of the field is `_1`"]
1218    #[inline(always)]
1219    pub fn is_1(&self) -> bool {
1220        *self == ASELCH_A::_1
1221    }
1222}
1223#[doc = "Field `ASELCH` writer - ELC_GPTH Event Source GTCCRA Input Capture Enable"]
1224pub type ASELCH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASELCH_A, O>;
1225impl<'a, const O: u8> ASELCH_W<'a, O> {
1226    #[doc = "GTCCRA input capture disabled at the ELC_GPTH input"]
1227    #[inline(always)]
1228    pub fn _0(self) -> &'a mut W {
1229        self.variant(ASELCH_A::_0)
1230    }
1231    #[doc = "GTCCRA input capture enabled at the ELC_GPTH input"]
1232    #[inline(always)]
1233    pub fn _1(self) -> &'a mut W {
1234        self.variant(ASELCH_A::_1)
1235    }
1236}
1237#[doc = "Field `ASOC` reader - Other channel Source GTCCRA Input Capture Enable"]
1238pub type ASOC_R = crate::BitReader<ASOC_A>;
1239#[doc = "Other channel Source GTCCRA Input Capture Enable\n\nValue on reset: 0"]
1240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1241pub enum ASOC_A {
1242    #[doc = "0: Disables GTCCRA input capture by other channel factor"]
1243    _0 = 0,
1244    #[doc = "1: Enables GTCCRA input capture by other channel factor"]
1245    _1 = 1,
1246}
1247impl From<ASOC_A> for bool {
1248    #[inline(always)]
1249    fn from(variant: ASOC_A) -> Self {
1250        variant as u8 != 0
1251    }
1252}
1253impl ASOC_R {
1254    #[doc = "Get enumerated values variant"]
1255    #[inline(always)]
1256    pub fn variant(&self) -> ASOC_A {
1257        match self.bits {
1258            false => ASOC_A::_0,
1259            true => ASOC_A::_1,
1260        }
1261    }
1262    #[doc = "Checks if the value of the field is `_0`"]
1263    #[inline(always)]
1264    pub fn is_0(&self) -> bool {
1265        *self == ASOC_A::_0
1266    }
1267    #[doc = "Checks if the value of the field is `_1`"]
1268    #[inline(always)]
1269    pub fn is_1(&self) -> bool {
1270        *self == ASOC_A::_1
1271    }
1272}
1273#[doc = "Field `ASOC` writer - Other channel Source GTCCRA Input Capture Enable"]
1274pub type ASOC_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTICASR_SPEC, ASOC_A, O>;
1275impl<'a, const O: u8> ASOC_W<'a, O> {
1276    #[doc = "Disables GTCCRA input capture by other channel factor"]
1277    #[inline(always)]
1278    pub fn _0(self) -> &'a mut W {
1279        self.variant(ASOC_A::_0)
1280    }
1281    #[doc = "Enables GTCCRA input capture by other channel factor"]
1282    #[inline(always)]
1283    pub fn _1(self) -> &'a mut W {
1284        self.variant(ASOC_A::_1)
1285    }
1286}
1287impl R {
1288    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source GTCCRA Input Capture Enable"]
1289    #[inline(always)]
1290    pub fn asgtrgar(&self) -> ASGTRGAR_R {
1291        ASGTRGAR_R::new((self.bits & 1) != 0)
1292    }
1293    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source GTCCRA Input Capture Enable"]
1294    #[inline(always)]
1295    pub fn asgtrgaf(&self) -> ASGTRGAF_R {
1296        ASGTRGAF_R::new(((self.bits >> 1) & 1) != 0)
1297    }
1298    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source GTCCRA Input Capture Enable"]
1299    #[inline(always)]
1300    pub fn asgtrgbr(&self) -> ASGTRGBR_R {
1301        ASGTRGBR_R::new(((self.bits >> 2) & 1) != 0)
1302    }
1303    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source GTCCRA Input Capture Enable"]
1304    #[inline(always)]
1305    pub fn asgtrgbf(&self) -> ASGTRGBF_R {
1306        ASGTRGBF_R::new(((self.bits >> 3) & 1) != 0)
1307    }
1308    #[doc = "Bit 4 - GTETRGC Pin Rising Input Source GTCCRA Input Capture Enable"]
1309    #[inline(always)]
1310    pub fn asgtrgcr(&self) -> ASGTRGCR_R {
1311        ASGTRGCR_R::new(((self.bits >> 4) & 1) != 0)
1312    }
1313    #[doc = "Bit 5 - GTETRGC Pin Falling Input Source GTCCRA Input Capture Enable"]
1314    #[inline(always)]
1315    pub fn asgtrgcf(&self) -> ASGTRGCF_R {
1316        ASGTRGCF_R::new(((self.bits >> 5) & 1) != 0)
1317    }
1318    #[doc = "Bit 6 - GTETRGD Pin Rising Input Source GTCCRA Input Capture Enable"]
1319    #[inline(always)]
1320    pub fn asgtrgdr(&self) -> ASGTRGDR_R {
1321        ASGTRGDR_R::new(((self.bits >> 6) & 1) != 0)
1322    }
1323    #[doc = "Bit 7 - GTETRGD Pin Falling Input Source GTCCRA Input Capture Enable"]
1324    #[inline(always)]
1325    pub fn asgtrgdf(&self) -> ASGTRGDF_R {
1326        ASGTRGDF_R::new(((self.bits >> 7) & 1) != 0)
1327    }
1328    #[doc = "Bit 8 - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
1329    #[inline(always)]
1330    pub fn ascarbl(&self) -> ASCARBL_R {
1331        ASCARBL_R::new(((self.bits >> 8) & 1) != 0)
1332    }
1333    #[doc = "Bit 9 - GTIOCnA Pin Rising Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
1334    #[inline(always)]
1335    pub fn ascarbh(&self) -> ASCARBH_R {
1336        ASCARBH_R::new(((self.bits >> 9) & 1) != 0)
1337    }
1338    #[doc = "Bit 10 - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
1339    #[inline(always)]
1340    pub fn ascafbl(&self) -> ASCAFBL_R {
1341        ASCAFBL_R::new(((self.bits >> 10) & 1) != 0)
1342    }
1343    #[doc = "Bit 11 - GTIOCnA Pin Falling Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
1344    #[inline(always)]
1345    pub fn ascafbh(&self) -> ASCAFBH_R {
1346        ASCAFBH_R::new(((self.bits >> 11) & 1) != 0)
1347    }
1348    #[doc = "Bit 12 - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
1349    #[inline(always)]
1350    pub fn ascbral(&self) -> ASCBRAL_R {
1351        ASCBRAL_R::new(((self.bits >> 12) & 1) != 0)
1352    }
1353    #[doc = "Bit 13 - GTIOCnB Pin Rising Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
1354    #[inline(always)]
1355    pub fn ascbrah(&self) -> ASCBRAH_R {
1356        ASCBRAH_R::new(((self.bits >> 13) & 1) != 0)
1357    }
1358    #[doc = "Bit 14 - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
1359    #[inline(always)]
1360    pub fn ascbfal(&self) -> ASCBFAL_R {
1361        ASCBFAL_R::new(((self.bits >> 14) & 1) != 0)
1362    }
1363    #[doc = "Bit 15 - GTIOCnB Pin Falling Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
1364    #[inline(always)]
1365    pub fn ascbfah(&self) -> ASCBFAH_R {
1366        ASCBFAH_R::new(((self.bits >> 15) & 1) != 0)
1367    }
1368    #[doc = "Bit 16 - ELC_GPTA Event Source GTCCRA Input Capture Enable"]
1369    #[inline(always)]
1370    pub fn aselca(&self) -> ASELCA_R {
1371        ASELCA_R::new(((self.bits >> 16) & 1) != 0)
1372    }
1373    #[doc = "Bit 17 - ELC_GPTB Event Source GTCCRA Input Capture Enable"]
1374    #[inline(always)]
1375    pub fn aselcb(&self) -> ASELCB_R {
1376        ASELCB_R::new(((self.bits >> 17) & 1) != 0)
1377    }
1378    #[doc = "Bit 18 - ELC_GPTC Event Source GTCCRA Input Capture Enable"]
1379    #[inline(always)]
1380    pub fn aselcc(&self) -> ASELCC_R {
1381        ASELCC_R::new(((self.bits >> 18) & 1) != 0)
1382    }
1383    #[doc = "Bit 19 - ELC_GPTD Event Source GTCCRA Input Capture Enable"]
1384    #[inline(always)]
1385    pub fn aselcd(&self) -> ASELCD_R {
1386        ASELCD_R::new(((self.bits >> 19) & 1) != 0)
1387    }
1388    #[doc = "Bit 20 - ELC_GPTE Event Source GTCCRA Input Capture Enable"]
1389    #[inline(always)]
1390    pub fn aselce(&self) -> ASELCE_R {
1391        ASELCE_R::new(((self.bits >> 20) & 1) != 0)
1392    }
1393    #[doc = "Bit 21 - ELC_GPTF Event Source GTCCRA Input Capture Enable"]
1394    #[inline(always)]
1395    pub fn aselcf(&self) -> ASELCF_R {
1396        ASELCF_R::new(((self.bits >> 21) & 1) != 0)
1397    }
1398    #[doc = "Bit 22 - ELC_GPTG Event Source GTCCRA Input Capture Enable"]
1399    #[inline(always)]
1400    pub fn aselcg(&self) -> ASELCG_R {
1401        ASELCG_R::new(((self.bits >> 22) & 1) != 0)
1402    }
1403    #[doc = "Bit 23 - ELC_GPTH Event Source GTCCRA Input Capture Enable"]
1404    #[inline(always)]
1405    pub fn aselch(&self) -> ASELCH_R {
1406        ASELCH_R::new(((self.bits >> 23) & 1) != 0)
1407    }
1408    #[doc = "Bit 24 - Other channel Source GTCCRA Input Capture Enable"]
1409    #[inline(always)]
1410    pub fn asoc(&self) -> ASOC_R {
1411        ASOC_R::new(((self.bits >> 24) & 1) != 0)
1412    }
1413}
1414impl W {
1415    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source GTCCRA Input Capture Enable"]
1416    #[inline(always)]
1417    #[must_use]
1418    pub fn asgtrgar(&mut self) -> ASGTRGAR_W<0> {
1419        ASGTRGAR_W::new(self)
1420    }
1421    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source GTCCRA Input Capture Enable"]
1422    #[inline(always)]
1423    #[must_use]
1424    pub fn asgtrgaf(&mut self) -> ASGTRGAF_W<1> {
1425        ASGTRGAF_W::new(self)
1426    }
1427    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source GTCCRA Input Capture Enable"]
1428    #[inline(always)]
1429    #[must_use]
1430    pub fn asgtrgbr(&mut self) -> ASGTRGBR_W<2> {
1431        ASGTRGBR_W::new(self)
1432    }
1433    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source GTCCRA Input Capture Enable"]
1434    #[inline(always)]
1435    #[must_use]
1436    pub fn asgtrgbf(&mut self) -> ASGTRGBF_W<3> {
1437        ASGTRGBF_W::new(self)
1438    }
1439    #[doc = "Bit 4 - GTETRGC Pin Rising Input Source GTCCRA Input Capture Enable"]
1440    #[inline(always)]
1441    #[must_use]
1442    pub fn asgtrgcr(&mut self) -> ASGTRGCR_W<4> {
1443        ASGTRGCR_W::new(self)
1444    }
1445    #[doc = "Bit 5 - GTETRGC Pin Falling Input Source GTCCRA Input Capture Enable"]
1446    #[inline(always)]
1447    #[must_use]
1448    pub fn asgtrgcf(&mut self) -> ASGTRGCF_W<5> {
1449        ASGTRGCF_W::new(self)
1450    }
1451    #[doc = "Bit 6 - GTETRGD Pin Rising Input Source GTCCRA Input Capture Enable"]
1452    #[inline(always)]
1453    #[must_use]
1454    pub fn asgtrgdr(&mut self) -> ASGTRGDR_W<6> {
1455        ASGTRGDR_W::new(self)
1456    }
1457    #[doc = "Bit 7 - GTETRGD Pin Falling Input Source GTCCRA Input Capture Enable"]
1458    #[inline(always)]
1459    #[must_use]
1460    pub fn asgtrgdf(&mut self) -> ASGTRGDF_W<7> {
1461        ASGTRGDF_W::new(self)
1462    }
1463    #[doc = "Bit 8 - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
1464    #[inline(always)]
1465    #[must_use]
1466    pub fn ascarbl(&mut self) -> ASCARBL_W<8> {
1467        ASCARBL_W::new(self)
1468    }
1469    #[doc = "Bit 9 - GTIOCnA Pin Rising Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
1470    #[inline(always)]
1471    #[must_use]
1472    pub fn ascarbh(&mut self) -> ASCARBH_W<9> {
1473        ASCARBH_W::new(self)
1474    }
1475    #[doc = "Bit 10 - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source GTCCRA Input Capture Enable"]
1476    #[inline(always)]
1477    #[must_use]
1478    pub fn ascafbl(&mut self) -> ASCAFBL_W<10> {
1479        ASCAFBL_W::new(self)
1480    }
1481    #[doc = "Bit 11 - GTIOCnA Pin Falling Input during GTIOCnB Value High Source GTCCRA Input Capture Enable"]
1482    #[inline(always)]
1483    #[must_use]
1484    pub fn ascafbh(&mut self) -> ASCAFBH_W<11> {
1485        ASCAFBH_W::new(self)
1486    }
1487    #[doc = "Bit 12 - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
1488    #[inline(always)]
1489    #[must_use]
1490    pub fn ascbral(&mut self) -> ASCBRAL_W<12> {
1491        ASCBRAL_W::new(self)
1492    }
1493    #[doc = "Bit 13 - GTIOCnB Pin Rising Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
1494    #[inline(always)]
1495    #[must_use]
1496    pub fn ascbrah(&mut self) -> ASCBRAH_W<13> {
1497        ASCBRAH_W::new(self)
1498    }
1499    #[doc = "Bit 14 - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source GTCCRA Input Capture Enable"]
1500    #[inline(always)]
1501    #[must_use]
1502    pub fn ascbfal(&mut self) -> ASCBFAL_W<14> {
1503        ASCBFAL_W::new(self)
1504    }
1505    #[doc = "Bit 15 - GTIOCnB Pin Falling Input during GTIOCnA Value High Source GTCCRA Input Capture Enable"]
1506    #[inline(always)]
1507    #[must_use]
1508    pub fn ascbfah(&mut self) -> ASCBFAH_W<15> {
1509        ASCBFAH_W::new(self)
1510    }
1511    #[doc = "Bit 16 - ELC_GPTA Event Source GTCCRA Input Capture Enable"]
1512    #[inline(always)]
1513    #[must_use]
1514    pub fn aselca(&mut self) -> ASELCA_W<16> {
1515        ASELCA_W::new(self)
1516    }
1517    #[doc = "Bit 17 - ELC_GPTB Event Source GTCCRA Input Capture Enable"]
1518    #[inline(always)]
1519    #[must_use]
1520    pub fn aselcb(&mut self) -> ASELCB_W<17> {
1521        ASELCB_W::new(self)
1522    }
1523    #[doc = "Bit 18 - ELC_GPTC Event Source GTCCRA Input Capture Enable"]
1524    #[inline(always)]
1525    #[must_use]
1526    pub fn aselcc(&mut self) -> ASELCC_W<18> {
1527        ASELCC_W::new(self)
1528    }
1529    #[doc = "Bit 19 - ELC_GPTD Event Source GTCCRA Input Capture Enable"]
1530    #[inline(always)]
1531    #[must_use]
1532    pub fn aselcd(&mut self) -> ASELCD_W<19> {
1533        ASELCD_W::new(self)
1534    }
1535    #[doc = "Bit 20 - ELC_GPTE Event Source GTCCRA Input Capture Enable"]
1536    #[inline(always)]
1537    #[must_use]
1538    pub fn aselce(&mut self) -> ASELCE_W<20> {
1539        ASELCE_W::new(self)
1540    }
1541    #[doc = "Bit 21 - ELC_GPTF Event Source GTCCRA Input Capture Enable"]
1542    #[inline(always)]
1543    #[must_use]
1544    pub fn aselcf(&mut self) -> ASELCF_W<21> {
1545        ASELCF_W::new(self)
1546    }
1547    #[doc = "Bit 22 - ELC_GPTG Event Source GTCCRA Input Capture Enable"]
1548    #[inline(always)]
1549    #[must_use]
1550    pub fn aselcg(&mut self) -> ASELCG_W<22> {
1551        ASELCG_W::new(self)
1552    }
1553    #[doc = "Bit 23 - ELC_GPTH Event Source GTCCRA Input Capture Enable"]
1554    #[inline(always)]
1555    #[must_use]
1556    pub fn aselch(&mut self) -> ASELCH_W<23> {
1557        ASELCH_W::new(self)
1558    }
1559    #[doc = "Bit 24 - Other channel Source GTCCRA Input Capture Enable"]
1560    #[inline(always)]
1561    #[must_use]
1562    pub fn asoc(&mut self) -> ASOC_W<24> {
1563        ASOC_W::new(self)
1564    }
1565    #[doc = "Writes raw bits to the register."]
1566    #[inline(always)]
1567    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1568        self.0.bits(bits);
1569        self
1570    }
1571}
1572#[doc = "General PWM Timer Input Capture Source Select Register A\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 [gticasr](index.html) module"]
1573pub struct GTICASR_SPEC;
1574impl crate::RegisterSpec for GTICASR_SPEC {
1575    type Ux = u32;
1576}
1577#[doc = "`read()` method returns [gticasr::R](R) reader structure"]
1578impl crate::Readable for GTICASR_SPEC {
1579    type Reader = R;
1580}
1581#[doc = "`write(|w| ..)` method takes [gticasr::W](W) writer structure"]
1582impl crate::Writable for GTICASR_SPEC {
1583    type Writer = W;
1584    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1585    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1586}
1587#[doc = "`reset()` method sets GTICASR to value 0"]
1588impl crate::Resettable for GTICASR_SPEC {
1589    const RESET_VALUE: Self::Ux = 0;
1590}