ra6m1/gpt328/
gtupsr.rs

1#[doc = "Register `GTUPSR` reader"]
2pub struct R(crate::R<GTUPSR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<GTUPSR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<GTUPSR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<GTUPSR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `GTUPSR` writer"]
17pub struct W(crate::W<GTUPSR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<GTUPSR_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<GTUPSR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<GTUPSR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `USGTRGAR` reader - GTETRGA Pin Rising Input Source Counter Count Up Enable"]
38pub type USGTRGAR_R = crate::BitReader<USGTRGAR_A>;
39#[doc = "GTETRGA Pin Rising Input Source Counter Count Up Enable\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum USGTRGAR_A {
42    #[doc = "0: Disable counter count up on the rising edge of GTETRGA input"]
43    _0 = 0,
44    #[doc = "1: Enable counter count up on the rising edge of GTETRGA input"]
45    _1 = 1,
46}
47impl From<USGTRGAR_A> for bool {
48    #[inline(always)]
49    fn from(variant: USGTRGAR_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl USGTRGAR_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> USGTRGAR_A {
57        match self.bits {
58            false => USGTRGAR_A::_0,
59            true => USGTRGAR_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 == USGTRGAR_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 == USGTRGAR_A::_1
71    }
72}
73#[doc = "Field `USGTRGAR` writer - GTETRGA Pin Rising Input Source Counter Count Up Enable"]
74pub type USGTRGAR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGAR_A, O>;
75impl<'a, const O: u8> USGTRGAR_W<'a, O> {
76    #[doc = "Disable counter count up on the rising edge of GTETRGA input"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(USGTRGAR_A::_0)
80    }
81    #[doc = "Enable counter count up on the rising edge of GTETRGA input"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(USGTRGAR_A::_1)
85    }
86}
87#[doc = "Field `USGTRGAF` reader - GTETRGA Pin Falling Input Source Counter Count Up Enable"]
88pub type USGTRGAF_R = crate::BitReader<USGTRGAF_A>;
89#[doc = "GTETRGA Pin Falling Input Source Counter Count Up Enable\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum USGTRGAF_A {
92    #[doc = "0: Disable counter count up on the falling edge of GTETRGA input"]
93    _0 = 0,
94    #[doc = "1: Enable counter count up on the falling edge of GTETRGA input."]
95    _1 = 1,
96}
97impl From<USGTRGAF_A> for bool {
98    #[inline(always)]
99    fn from(variant: USGTRGAF_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl USGTRGAF_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> USGTRGAF_A {
107        match self.bits {
108            false => USGTRGAF_A::_0,
109            true => USGTRGAF_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 == USGTRGAF_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 == USGTRGAF_A::_1
121    }
122}
123#[doc = "Field `USGTRGAF` writer - GTETRGA Pin Falling Input Source Counter Count Up Enable"]
124pub type USGTRGAF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGAF_A, O>;
125impl<'a, const O: u8> USGTRGAF_W<'a, O> {
126    #[doc = "Disable counter count up on the falling edge of GTETRGA input"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(USGTRGAF_A::_0)
130    }
131    #[doc = "Enable counter count up on the falling edge of GTETRGA input."]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(USGTRGAF_A::_1)
135    }
136}
137#[doc = "Field `USGTRGBR` reader - GTETRGB Pin Rising Input Source Counter Count Up Enable"]
138pub type USGTRGBR_R = crate::BitReader<USGTRGBR_A>;
139#[doc = "GTETRGB Pin Rising Input Source Counter Count Up Enable\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum USGTRGBR_A {
142    #[doc = "0: Disable counter count up on the rising edge of GTETRGB input"]
143    _0 = 0,
144    #[doc = "1: Enable counter count up on the rising edge of GTETRGB input."]
145    _1 = 1,
146}
147impl From<USGTRGBR_A> for bool {
148    #[inline(always)]
149    fn from(variant: USGTRGBR_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl USGTRGBR_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> USGTRGBR_A {
157        match self.bits {
158            false => USGTRGBR_A::_0,
159            true => USGTRGBR_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 == USGTRGBR_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 == USGTRGBR_A::_1
171    }
172}
173#[doc = "Field `USGTRGBR` writer - GTETRGB Pin Rising Input Source Counter Count Up Enable"]
174pub type USGTRGBR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGBR_A, O>;
175impl<'a, const O: u8> USGTRGBR_W<'a, O> {
176    #[doc = "Disable counter count up on the rising edge of GTETRGB input"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(USGTRGBR_A::_0)
180    }
181    #[doc = "Enable counter count up on the rising edge of GTETRGB input."]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(USGTRGBR_A::_1)
185    }
186}
187#[doc = "Field `USGTRGBF` reader - GTETRGB Pin Falling Input Source Counter Count Up Enable"]
188pub type USGTRGBF_R = crate::BitReader<USGTRGBF_A>;
189#[doc = "GTETRGB Pin Falling Input Source Counter Count Up Enable\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum USGTRGBF_A {
192    #[doc = "0: Disable counter count up on the falling edge of GTETRGB input"]
193    _0 = 0,
194    #[doc = "1: Enable counter count up on the falling edge of GTETRGB input."]
195    _1 = 1,
196}
197impl From<USGTRGBF_A> for bool {
198    #[inline(always)]
199    fn from(variant: USGTRGBF_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl USGTRGBF_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> USGTRGBF_A {
207        match self.bits {
208            false => USGTRGBF_A::_0,
209            true => USGTRGBF_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 == USGTRGBF_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 == USGTRGBF_A::_1
221    }
222}
223#[doc = "Field `USGTRGBF` writer - GTETRGB Pin Falling Input Source Counter Count Up Enable"]
224pub type USGTRGBF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGBF_A, O>;
225impl<'a, const O: u8> USGTRGBF_W<'a, O> {
226    #[doc = "Disable counter count up on the falling edge of GTETRGB input"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(USGTRGBF_A::_0)
230    }
231    #[doc = "Enable counter count up on the falling edge of GTETRGB input."]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(USGTRGBF_A::_1)
235    }
236}
237#[doc = "Field `USGTRGCR` reader - GTETRGC Pin Rising Input Source Counter Count Up Enable"]
238pub type USGTRGCR_R = crate::BitReader<USGTRGCR_A>;
239#[doc = "GTETRGC Pin Rising Input Source Counter Count Up Enable\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum USGTRGCR_A {
242    #[doc = "0: Disable counter count up on the rising edge of GTETRGC input"]
243    _0 = 0,
244    #[doc = "1: Enable counter count up on the rising edge of GTETRGC input"]
245    _1 = 1,
246}
247impl From<USGTRGCR_A> for bool {
248    #[inline(always)]
249    fn from(variant: USGTRGCR_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl USGTRGCR_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> USGTRGCR_A {
257        match self.bits {
258            false => USGTRGCR_A::_0,
259            true => USGTRGCR_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 == USGTRGCR_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 == USGTRGCR_A::_1
271    }
272}
273#[doc = "Field `USGTRGCR` writer - GTETRGC Pin Rising Input Source Counter Count Up Enable"]
274pub type USGTRGCR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGCR_A, O>;
275impl<'a, const O: u8> USGTRGCR_W<'a, O> {
276    #[doc = "Disable counter count up on the rising edge of GTETRGC input"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(USGTRGCR_A::_0)
280    }
281    #[doc = "Enable counter count up on the rising edge of GTETRGC input"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(USGTRGCR_A::_1)
285    }
286}
287#[doc = "Field `USGTRGCF` reader - GTETRGC Pin Falling Input Source Counter Count Up Enable"]
288pub type USGTRGCF_R = crate::BitReader<USGTRGCF_A>;
289#[doc = "GTETRGC Pin Falling Input Source Counter Count Up Enable\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum USGTRGCF_A {
292    #[doc = "0: Disable counter count up on the falling edge of GTETRGC input"]
293    _0 = 0,
294    #[doc = "1: Enable counter count up on the falling edge of GTETRGC input."]
295    _1 = 1,
296}
297impl From<USGTRGCF_A> for bool {
298    #[inline(always)]
299    fn from(variant: USGTRGCF_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl USGTRGCF_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> USGTRGCF_A {
307        match self.bits {
308            false => USGTRGCF_A::_0,
309            true => USGTRGCF_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 == USGTRGCF_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 == USGTRGCF_A::_1
321    }
322}
323#[doc = "Field `USGTRGCF` writer - GTETRGC Pin Falling Input Source Counter Count Up Enable"]
324pub type USGTRGCF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGCF_A, O>;
325impl<'a, const O: u8> USGTRGCF_W<'a, O> {
326    #[doc = "Disable counter count up on the falling edge of GTETRGC input"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(USGTRGCF_A::_0)
330    }
331    #[doc = "Enable counter count up on the falling edge of GTETRGC input."]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(USGTRGCF_A::_1)
335    }
336}
337#[doc = "Field `USGTRGDR` reader - GTETRGD Pin Rising Input Source Counter Count Up Enable"]
338pub type USGTRGDR_R = crate::BitReader<USGTRGDR_A>;
339#[doc = "GTETRGD Pin Rising Input Source Counter Count Up Enable\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum USGTRGDR_A {
342    #[doc = "0: Disable counter count up on the rising edge of GTETRGD input"]
343    _0 = 0,
344    #[doc = "1: Enable counter count up on the rising edge of GTETRGD input"]
345    _1 = 1,
346}
347impl From<USGTRGDR_A> for bool {
348    #[inline(always)]
349    fn from(variant: USGTRGDR_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl USGTRGDR_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> USGTRGDR_A {
357        match self.bits {
358            false => USGTRGDR_A::_0,
359            true => USGTRGDR_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 == USGTRGDR_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 == USGTRGDR_A::_1
371    }
372}
373#[doc = "Field `USGTRGDR` writer - GTETRGD Pin Rising Input Source Counter Count Up Enable"]
374pub type USGTRGDR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGDR_A, O>;
375impl<'a, const O: u8> USGTRGDR_W<'a, O> {
376    #[doc = "Disable counter count up on the rising edge of GTETRGD input"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(USGTRGDR_A::_0)
380    }
381    #[doc = "Enable counter count up on the rising edge of GTETRGD input"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(USGTRGDR_A::_1)
385    }
386}
387#[doc = "Field `USGTRGDF` reader - GTETRGD Pin Falling Input Source Counter Count Up Enable"]
388pub type USGTRGDF_R = crate::BitReader<USGTRGDF_A>;
389#[doc = "GTETRGD Pin Falling Input Source Counter Count Up Enable\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum USGTRGDF_A {
392    #[doc = "0: Disable counter count up on the falling edge of GTETRGD input"]
393    _0 = 0,
394    #[doc = "1: Enable counter count up on the falling edge of GTETRGD input."]
395    _1 = 1,
396}
397impl From<USGTRGDF_A> for bool {
398    #[inline(always)]
399    fn from(variant: USGTRGDF_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl USGTRGDF_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> USGTRGDF_A {
407        match self.bits {
408            false => USGTRGDF_A::_0,
409            true => USGTRGDF_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 == USGTRGDF_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 == USGTRGDF_A::_1
421    }
422}
423#[doc = "Field `USGTRGDF` writer - GTETRGD Pin Falling Input Source Counter Count Up Enable"]
424pub type USGTRGDF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USGTRGDF_A, O>;
425impl<'a, const O: u8> USGTRGDF_W<'a, O> {
426    #[doc = "Disable counter count up on the falling edge of GTETRGD input"]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(USGTRGDF_A::_0)
430    }
431    #[doc = "Enable counter count up on the falling edge of GTETRGD input."]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(USGTRGDF_A::_1)
435    }
436}
437#[doc = "Field `USCARBL` reader - GTIOCA Pin Rising Input during GTIOCB Value Low Source Counter Count Up Enable"]
438pub type USCARBL_R = crate::BitReader<USCARBL_A>;
439#[doc = "GTIOCA Pin Rising Input during GTIOCB Value Low Source Counter Count Up Enable\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum USCARBL_A {
442    #[doc = "0: Disable counter count up on the rising edge of GTIOCA input when GTIOCB input is 0"]
443    _0 = 0,
444    #[doc = "1: Enable counter count up on the rising edge of GTIOCA input when GTIOCB input is 0."]
445    _1 = 1,
446}
447impl From<USCARBL_A> for bool {
448    #[inline(always)]
449    fn from(variant: USCARBL_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl USCARBL_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> USCARBL_A {
457        match self.bits {
458            false => USCARBL_A::_0,
459            true => USCARBL_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 == USCARBL_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 == USCARBL_A::_1
471    }
472}
473#[doc = "Field `USCARBL` writer - GTIOCA Pin Rising Input during GTIOCB Value Low Source Counter Count Up Enable"]
474pub type USCARBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCARBL_A, O>;
475impl<'a, const O: u8> USCARBL_W<'a, O> {
476    #[doc = "Disable counter count up on the rising edge of GTIOCA input when GTIOCB input is 0"]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(USCARBL_A::_0)
480    }
481    #[doc = "Enable counter count up on the rising edge of GTIOCA input when GTIOCB input is 0."]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(USCARBL_A::_1)
485    }
486}
487#[doc = "Field `USCARBH` reader - GTIOCA Pin Rising Input during GTIOCB Value High Source Counter Count Up Enable"]
488pub type USCARBH_R = crate::BitReader<USCARBH_A>;
489#[doc = "GTIOCA Pin Rising Input during GTIOCB Value High Source Counter Count Up Enable\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum USCARBH_A {
492    #[doc = "0: Disable counter count up on the rising edge of GTIOCA input when GTIOCB input is 1"]
493    _0 = 0,
494    #[doc = "1: Enable counter count up on the rising edge of GTIOCA input when GTIOCB input is 1."]
495    _1 = 1,
496}
497impl From<USCARBH_A> for bool {
498    #[inline(always)]
499    fn from(variant: USCARBH_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl USCARBH_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> USCARBH_A {
507        match self.bits {
508            false => USCARBH_A::_0,
509            true => USCARBH_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 == USCARBH_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 == USCARBH_A::_1
521    }
522}
523#[doc = "Field `USCARBH` writer - GTIOCA Pin Rising Input during GTIOCB Value High Source Counter Count Up Enable"]
524pub type USCARBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCARBH_A, O>;
525impl<'a, const O: u8> USCARBH_W<'a, O> {
526    #[doc = "Disable counter count up on the rising edge of GTIOCA input when GTIOCB input is 1"]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(USCARBH_A::_0)
530    }
531    #[doc = "Enable counter count up on the rising edge of GTIOCA input when GTIOCB input is 1."]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(USCARBH_A::_1)
535    }
536}
537#[doc = "Field `USCAFBL` reader - GTIOCA Pin Falling Input during GTIOCB Value Low Source Counter Count Up Enable"]
538pub type USCAFBL_R = crate::BitReader<USCAFBL_A>;
539#[doc = "GTIOCA Pin Falling Input during GTIOCB Value Low Source Counter Count Up Enable\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum USCAFBL_A {
542    #[doc = "0: Disable counter count up on the falling edge of GTIOCA input when GTIOCB input is 0"]
543    _0 = 0,
544    #[doc = "1: Enable counter count up on the falling edge of GTIOCA input when GTIOCB input is 0."]
545    _1 = 1,
546}
547impl From<USCAFBL_A> for bool {
548    #[inline(always)]
549    fn from(variant: USCAFBL_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl USCAFBL_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> USCAFBL_A {
557        match self.bits {
558            false => USCAFBL_A::_0,
559            true => USCAFBL_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 == USCAFBL_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 == USCAFBL_A::_1
571    }
572}
573#[doc = "Field `USCAFBL` writer - GTIOCA Pin Falling Input during GTIOCB Value Low Source Counter Count Up Enable"]
574pub type USCAFBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCAFBL_A, O>;
575impl<'a, const O: u8> USCAFBL_W<'a, O> {
576    #[doc = "Disable counter count up on the falling edge of GTIOCA input when GTIOCB input is 0"]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(USCAFBL_A::_0)
580    }
581    #[doc = "Enable counter count up on the falling edge of GTIOCA input when GTIOCB input is 0."]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(USCAFBL_A::_1)
585    }
586}
587#[doc = "Field `USCAFBH` reader - GTIOCA Pin Falling Input during GTIOCB Value High Source Counter Count Up Enable"]
588pub type USCAFBH_R = crate::BitReader<USCAFBH_A>;
589#[doc = "GTIOCA Pin Falling Input during GTIOCB Value High Source Counter Count Up Enable\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum USCAFBH_A {
592    #[doc = "0: Disable counter count up on the falling edge of GTIOCA input when GTIOCB input is 1"]
593    _0 = 0,
594    #[doc = "1: Enable counter count up on the falling edge of GTIOCA input when GTIOCB input is 1."]
595    _1 = 1,
596}
597impl From<USCAFBH_A> for bool {
598    #[inline(always)]
599    fn from(variant: USCAFBH_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl USCAFBH_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> USCAFBH_A {
607        match self.bits {
608            false => USCAFBH_A::_0,
609            true => USCAFBH_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 == USCAFBH_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 == USCAFBH_A::_1
621    }
622}
623#[doc = "Field `USCAFBH` writer - GTIOCA Pin Falling Input during GTIOCB Value High Source Counter Count Up Enable"]
624pub type USCAFBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCAFBH_A, O>;
625impl<'a, const O: u8> USCAFBH_W<'a, O> {
626    #[doc = "Disable counter count up on the falling edge of GTIOCA input when GTIOCB input is 1"]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(USCAFBH_A::_0)
630    }
631    #[doc = "Enable counter count up on the falling edge of GTIOCA input when GTIOCB input is 1."]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(USCAFBH_A::_1)
635    }
636}
637#[doc = "Field `USCBRAL` reader - GTIOCB Pin Rising Input during GTIOCA Value Low Source Counter Count Up Enable"]
638pub type USCBRAL_R = crate::BitReader<USCBRAL_A>;
639#[doc = "GTIOCB Pin Rising Input during GTIOCA Value Low Source Counter Count Up Enable\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum USCBRAL_A {
642    #[doc = "0: Disable counter count up on the rising edge of GTIOCB input when GTIOCA input is 0"]
643    _0 = 0,
644    #[doc = "1: Enable counter count up on the rising edge of GTIOCB input when GTIOCA input is 0."]
645    _1 = 1,
646}
647impl From<USCBRAL_A> for bool {
648    #[inline(always)]
649    fn from(variant: USCBRAL_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl USCBRAL_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> USCBRAL_A {
657        match self.bits {
658            false => USCBRAL_A::_0,
659            true => USCBRAL_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 == USCBRAL_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 == USCBRAL_A::_1
671    }
672}
673#[doc = "Field `USCBRAL` writer - GTIOCB Pin Rising Input during GTIOCA Value Low Source Counter Count Up Enable"]
674pub type USCBRAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCBRAL_A, O>;
675impl<'a, const O: u8> USCBRAL_W<'a, O> {
676    #[doc = "Disable counter count up on the rising edge of GTIOCB input when GTIOCA input is 0"]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(USCBRAL_A::_0)
680    }
681    #[doc = "Enable counter count up on the rising edge of GTIOCB input when GTIOCA input is 0."]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(USCBRAL_A::_1)
685    }
686}
687#[doc = "Field `USCBRAH` reader - GTIOCB Pin Rising Input during GTIOCA Value High Source Counter Count Up Enable"]
688pub type USCBRAH_R = crate::BitReader<USCBRAH_A>;
689#[doc = "GTIOCB Pin Rising Input during GTIOCA Value High Source Counter Count Up Enable\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum USCBRAH_A {
692    #[doc = "0: Disable counter count up on the rising edge of GTIOCB input when GTIOCA input is 1"]
693    _0 = 0,
694    #[doc = "1: Enable counter count up on the rising edge of GTIOCB input when GTIOCA input is 1."]
695    _1 = 1,
696}
697impl From<USCBRAH_A> for bool {
698    #[inline(always)]
699    fn from(variant: USCBRAH_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl USCBRAH_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> USCBRAH_A {
707        match self.bits {
708            false => USCBRAH_A::_0,
709            true => USCBRAH_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 == USCBRAH_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 == USCBRAH_A::_1
721    }
722}
723#[doc = "Field `USCBRAH` writer - GTIOCB Pin Rising Input during GTIOCA Value High Source Counter Count Up Enable"]
724pub type USCBRAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCBRAH_A, O>;
725impl<'a, const O: u8> USCBRAH_W<'a, O> {
726    #[doc = "Disable counter count up on the rising edge of GTIOCB input when GTIOCA input is 1"]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(USCBRAH_A::_0)
730    }
731    #[doc = "Enable counter count up on the rising edge of GTIOCB input when GTIOCA input is 1."]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(USCBRAH_A::_1)
735    }
736}
737#[doc = "Field `USCBFAL` reader - GTIOCB Pin Falling Input during GTIOCA Value Low Source Counter Count Up Enable"]
738pub type USCBFAL_R = crate::BitReader<USCBFAL_A>;
739#[doc = "GTIOCB Pin Falling Input during GTIOCA Value Low Source Counter Count Up Enable\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum USCBFAL_A {
742    #[doc = "0: Disable counter count up on the falling edge of GTIOCB input when GTIOCA input is 0"]
743    _0 = 0,
744    #[doc = "1: Enable counter count up on the falling edge of GTIOCB input when GTIOCA input is 0."]
745    _1 = 1,
746}
747impl From<USCBFAL_A> for bool {
748    #[inline(always)]
749    fn from(variant: USCBFAL_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl USCBFAL_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> USCBFAL_A {
757        match self.bits {
758            false => USCBFAL_A::_0,
759            true => USCBFAL_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 == USCBFAL_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 == USCBFAL_A::_1
771    }
772}
773#[doc = "Field `USCBFAL` writer - GTIOCB Pin Falling Input during GTIOCA Value Low Source Counter Count Up Enable"]
774pub type USCBFAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCBFAL_A, O>;
775impl<'a, const O: u8> USCBFAL_W<'a, O> {
776    #[doc = "Disable counter count up on the falling edge of GTIOCB input when GTIOCA input is 0"]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(USCBFAL_A::_0)
780    }
781    #[doc = "Enable counter count up on the falling edge of GTIOCB input when GTIOCA input is 0."]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(USCBFAL_A::_1)
785    }
786}
787#[doc = "Field `USCBFAH` reader - GTIOCB Pin Falling Input during GTIOCA Value High Source Counter Count Up Enable"]
788pub type USCBFAH_R = crate::BitReader<USCBFAH_A>;
789#[doc = "GTIOCB Pin Falling Input during GTIOCA Value High Source Counter Count Up Enable\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum USCBFAH_A {
792    #[doc = "0: Disable counter count up on the falling edge of GTIOCB input when GTIOCA input is 1"]
793    _0 = 0,
794    #[doc = "1: Enable counter count up on the falling edge of GTIOCB input when GTIOCA input is 1."]
795    _1 = 1,
796}
797impl From<USCBFAH_A> for bool {
798    #[inline(always)]
799    fn from(variant: USCBFAH_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl USCBFAH_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> USCBFAH_A {
807        match self.bits {
808            false => USCBFAH_A::_0,
809            true => USCBFAH_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 == USCBFAH_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 == USCBFAH_A::_1
821    }
822}
823#[doc = "Field `USCBFAH` writer - GTIOCB Pin Falling Input during GTIOCA Value High Source Counter Count Up Enable"]
824pub type USCBFAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USCBFAH_A, O>;
825impl<'a, const O: u8> USCBFAH_W<'a, O> {
826    #[doc = "Disable counter count up on the falling edge of GTIOCB input when GTIOCA input is 1"]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(USCBFAH_A::_0)
830    }
831    #[doc = "Enable counter count up on the falling edge of GTIOCB input when GTIOCA input is 1."]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(USCBFAH_A::_1)
835    }
836}
837#[doc = "Field `USELCA` reader - ELC_GPTA Event Source Counter Count Up Enable"]
838pub type USELCA_R = crate::BitReader<USELCA_A>;
839#[doc = "ELC_GPTA Event Source Counter Count Up Enable\n\nValue on reset: 0"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum USELCA_A {
842    #[doc = "0: Disable counter count up on ELC_GPTA input"]
843    _0 = 0,
844    #[doc = "1: Enable counter count up on ELC_GPTA input."]
845    _1 = 1,
846}
847impl From<USELCA_A> for bool {
848    #[inline(always)]
849    fn from(variant: USELCA_A) -> Self {
850        variant as u8 != 0
851    }
852}
853impl USELCA_R {
854    #[doc = "Get enumerated values variant"]
855    #[inline(always)]
856    pub fn variant(&self) -> USELCA_A {
857        match self.bits {
858            false => USELCA_A::_0,
859            true => USELCA_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 == USELCA_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 == USELCA_A::_1
871    }
872}
873#[doc = "Field `USELCA` writer - ELC_GPTA Event Source Counter Count Up Enable"]
874pub type USELCA_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCA_A, O>;
875impl<'a, const O: u8> USELCA_W<'a, O> {
876    #[doc = "Disable counter count up on ELC_GPTA input"]
877    #[inline(always)]
878    pub fn _0(self) -> &'a mut W {
879        self.variant(USELCA_A::_0)
880    }
881    #[doc = "Enable counter count up on ELC_GPTA input."]
882    #[inline(always)]
883    pub fn _1(self) -> &'a mut W {
884        self.variant(USELCA_A::_1)
885    }
886}
887#[doc = "Field `USELCB` reader - ELC_GPTB Event Source Counter Count Up Enable"]
888pub type USELCB_R = crate::BitReader<USELCB_A>;
889#[doc = "ELC_GPTB Event Source Counter Count Up Enable\n\nValue on reset: 0"]
890#[derive(Clone, Copy, Debug, PartialEq, Eq)]
891pub enum USELCB_A {
892    #[doc = "0: Disable counter count up on ELC_GPTB input"]
893    _0 = 0,
894    #[doc = "1: Enable counter count up on ELC_GPTB input."]
895    _1 = 1,
896}
897impl From<USELCB_A> for bool {
898    #[inline(always)]
899    fn from(variant: USELCB_A) -> Self {
900        variant as u8 != 0
901    }
902}
903impl USELCB_R {
904    #[doc = "Get enumerated values variant"]
905    #[inline(always)]
906    pub fn variant(&self) -> USELCB_A {
907        match self.bits {
908            false => USELCB_A::_0,
909            true => USELCB_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 == USELCB_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 == USELCB_A::_1
921    }
922}
923#[doc = "Field `USELCB` writer - ELC_GPTB Event Source Counter Count Up Enable"]
924pub type USELCB_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCB_A, O>;
925impl<'a, const O: u8> USELCB_W<'a, O> {
926    #[doc = "Disable counter count up on ELC_GPTB input"]
927    #[inline(always)]
928    pub fn _0(self) -> &'a mut W {
929        self.variant(USELCB_A::_0)
930    }
931    #[doc = "Enable counter count up on ELC_GPTB input."]
932    #[inline(always)]
933    pub fn _1(self) -> &'a mut W {
934        self.variant(USELCB_A::_1)
935    }
936}
937#[doc = "Field `USELCC` reader - ELC_GPTC Event Source Counter Count Up Enable"]
938pub type USELCC_R = crate::BitReader<USELCC_A>;
939#[doc = "ELC_GPTC Event Source Counter Count Up Enable\n\nValue on reset: 0"]
940#[derive(Clone, Copy, Debug, PartialEq, Eq)]
941pub enum USELCC_A {
942    #[doc = "0: Disable counter count up on ELC_GPTC input"]
943    _0 = 0,
944    #[doc = "1: Enable counter count up on ELC_GPTC input."]
945    _1 = 1,
946}
947impl From<USELCC_A> for bool {
948    #[inline(always)]
949    fn from(variant: USELCC_A) -> Self {
950        variant as u8 != 0
951    }
952}
953impl USELCC_R {
954    #[doc = "Get enumerated values variant"]
955    #[inline(always)]
956    pub fn variant(&self) -> USELCC_A {
957        match self.bits {
958            false => USELCC_A::_0,
959            true => USELCC_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 == USELCC_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 == USELCC_A::_1
971    }
972}
973#[doc = "Field `USELCC` writer - ELC_GPTC Event Source Counter Count Up Enable"]
974pub type USELCC_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCC_A, O>;
975impl<'a, const O: u8> USELCC_W<'a, O> {
976    #[doc = "Disable counter count up on ELC_GPTC input"]
977    #[inline(always)]
978    pub fn _0(self) -> &'a mut W {
979        self.variant(USELCC_A::_0)
980    }
981    #[doc = "Enable counter count up on ELC_GPTC input."]
982    #[inline(always)]
983    pub fn _1(self) -> &'a mut W {
984        self.variant(USELCC_A::_1)
985    }
986}
987#[doc = "Field `USELCD` reader - ELC_GPTD Event Source Counter Count Up Enable"]
988pub type USELCD_R = crate::BitReader<USELCD_A>;
989#[doc = "ELC_GPTD Event Source Counter Count Up Enable\n\nValue on reset: 0"]
990#[derive(Clone, Copy, Debug, PartialEq, Eq)]
991pub enum USELCD_A {
992    #[doc = "0: Disable counter count up on ELC_GPTD input"]
993    _0 = 0,
994    #[doc = "1: Enable counter count up on ELC_GPTD input"]
995    _1 = 1,
996}
997impl From<USELCD_A> for bool {
998    #[inline(always)]
999    fn from(variant: USELCD_A) -> Self {
1000        variant as u8 != 0
1001    }
1002}
1003impl USELCD_R {
1004    #[doc = "Get enumerated values variant"]
1005    #[inline(always)]
1006    pub fn variant(&self) -> USELCD_A {
1007        match self.bits {
1008            false => USELCD_A::_0,
1009            true => USELCD_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 == USELCD_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 == USELCD_A::_1
1021    }
1022}
1023#[doc = "Field `USELCD` writer - ELC_GPTD Event Source Counter Count Up Enable"]
1024pub type USELCD_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCD_A, O>;
1025impl<'a, const O: u8> USELCD_W<'a, O> {
1026    #[doc = "Disable counter count up on ELC_GPTD input"]
1027    #[inline(always)]
1028    pub fn _0(self) -> &'a mut W {
1029        self.variant(USELCD_A::_0)
1030    }
1031    #[doc = "Enable counter count up on ELC_GPTD input"]
1032    #[inline(always)]
1033    pub fn _1(self) -> &'a mut W {
1034        self.variant(USELCD_A::_1)
1035    }
1036}
1037#[doc = "Field `USELCE` reader - ELC_GPTE Event Source Counter Count Up Enable"]
1038pub type USELCE_R = crate::BitReader<USELCE_A>;
1039#[doc = "ELC_GPTE Event Source Counter Count Up Enable\n\nValue on reset: 0"]
1040#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1041pub enum USELCE_A {
1042    #[doc = "0: Disable counter count up on ELC_GPTE input"]
1043    _0 = 0,
1044    #[doc = "1: Enable counter count up on ELC_GPTE input.put"]
1045    _1 = 1,
1046}
1047impl From<USELCE_A> for bool {
1048    #[inline(always)]
1049    fn from(variant: USELCE_A) -> Self {
1050        variant as u8 != 0
1051    }
1052}
1053impl USELCE_R {
1054    #[doc = "Get enumerated values variant"]
1055    #[inline(always)]
1056    pub fn variant(&self) -> USELCE_A {
1057        match self.bits {
1058            false => USELCE_A::_0,
1059            true => USELCE_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 == USELCE_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 == USELCE_A::_1
1071    }
1072}
1073#[doc = "Field `USELCE` writer - ELC_GPTE Event Source Counter Count Up Enable"]
1074pub type USELCE_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCE_A, O>;
1075impl<'a, const O: u8> USELCE_W<'a, O> {
1076    #[doc = "Disable counter count up on ELC_GPTE input"]
1077    #[inline(always)]
1078    pub fn _0(self) -> &'a mut W {
1079        self.variant(USELCE_A::_0)
1080    }
1081    #[doc = "Enable counter count up on ELC_GPTE input.put"]
1082    #[inline(always)]
1083    pub fn _1(self) -> &'a mut W {
1084        self.variant(USELCE_A::_1)
1085    }
1086}
1087#[doc = "Field `USELCF` reader - ELC_GPTF Event Source Counter Count Up Enable"]
1088pub type USELCF_R = crate::BitReader<USELCF_A>;
1089#[doc = "ELC_GPTF Event Source Counter Count Up Enable\n\nValue on reset: 0"]
1090#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1091pub enum USELCF_A {
1092    #[doc = "0: Disable counter count up on ELC_GPTF input"]
1093    _0 = 0,
1094    #[doc = "1: Enable counter count up on ELC_GPTF input."]
1095    _1 = 1,
1096}
1097impl From<USELCF_A> for bool {
1098    #[inline(always)]
1099    fn from(variant: USELCF_A) -> Self {
1100        variant as u8 != 0
1101    }
1102}
1103impl USELCF_R {
1104    #[doc = "Get enumerated values variant"]
1105    #[inline(always)]
1106    pub fn variant(&self) -> USELCF_A {
1107        match self.bits {
1108            false => USELCF_A::_0,
1109            true => USELCF_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 == USELCF_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 == USELCF_A::_1
1121    }
1122}
1123#[doc = "Field `USELCF` writer - ELC_GPTF Event Source Counter Count Up Enable"]
1124pub type USELCF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCF_A, O>;
1125impl<'a, const O: u8> USELCF_W<'a, O> {
1126    #[doc = "Disable counter count up on ELC_GPTF input"]
1127    #[inline(always)]
1128    pub fn _0(self) -> &'a mut W {
1129        self.variant(USELCF_A::_0)
1130    }
1131    #[doc = "Enable counter count up on ELC_GPTF input."]
1132    #[inline(always)]
1133    pub fn _1(self) -> &'a mut W {
1134        self.variant(USELCF_A::_1)
1135    }
1136}
1137#[doc = "Field `USELCG` reader - ELC_GPTG Event Source Counter Count Up Enable"]
1138pub type USELCG_R = crate::BitReader<USELCG_A>;
1139#[doc = "ELC_GPTG Event Source Counter Count Up Enable\n\nValue on reset: 0"]
1140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1141pub enum USELCG_A {
1142    #[doc = "0: Disable counter count up on ELC_GPTG input"]
1143    _0 = 0,
1144    #[doc = "1: Enable counter count up on ELC_GPTG input."]
1145    _1 = 1,
1146}
1147impl From<USELCG_A> for bool {
1148    #[inline(always)]
1149    fn from(variant: USELCG_A) -> Self {
1150        variant as u8 != 0
1151    }
1152}
1153impl USELCG_R {
1154    #[doc = "Get enumerated values variant"]
1155    #[inline(always)]
1156    pub fn variant(&self) -> USELCG_A {
1157        match self.bits {
1158            false => USELCG_A::_0,
1159            true => USELCG_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 == USELCG_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 == USELCG_A::_1
1171    }
1172}
1173#[doc = "Field `USELCG` writer - ELC_GPTG Event Source Counter Count Up Enable"]
1174pub type USELCG_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCG_A, O>;
1175impl<'a, const O: u8> USELCG_W<'a, O> {
1176    #[doc = "Disable counter count up on ELC_GPTG input"]
1177    #[inline(always)]
1178    pub fn _0(self) -> &'a mut W {
1179        self.variant(USELCG_A::_0)
1180    }
1181    #[doc = "Enable counter count up on ELC_GPTG input."]
1182    #[inline(always)]
1183    pub fn _1(self) -> &'a mut W {
1184        self.variant(USELCG_A::_1)
1185    }
1186}
1187#[doc = "Field `USELCH` reader - ELC_GPTH Event Source Counter Count Up Enable"]
1188pub type USELCH_R = crate::BitReader<USELCH_A>;
1189#[doc = "ELC_GPTH Event Source Counter Count Up Enable\n\nValue on reset: 0"]
1190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1191pub enum USELCH_A {
1192    #[doc = "0: Disable counter count up on ELC_GPTH input"]
1193    _0 = 0,
1194    #[doc = "1: Enable counter count up on ELC_GPTH input."]
1195    _1 = 1,
1196}
1197impl From<USELCH_A> for bool {
1198    #[inline(always)]
1199    fn from(variant: USELCH_A) -> Self {
1200        variant as u8 != 0
1201    }
1202}
1203impl USELCH_R {
1204    #[doc = "Get enumerated values variant"]
1205    #[inline(always)]
1206    pub fn variant(&self) -> USELCH_A {
1207        match self.bits {
1208            false => USELCH_A::_0,
1209            true => USELCH_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 == USELCH_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 == USELCH_A::_1
1221    }
1222}
1223#[doc = "Field `USELCH` writer - ELC_GPTH Event Source Counter Count Up Enable"]
1224pub type USELCH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTUPSR_SPEC, USELCH_A, O>;
1225impl<'a, const O: u8> USELCH_W<'a, O> {
1226    #[doc = "Disable counter count up on ELC_GPTH input"]
1227    #[inline(always)]
1228    pub fn _0(self) -> &'a mut W {
1229        self.variant(USELCH_A::_0)
1230    }
1231    #[doc = "Enable counter count up on ELC_GPTH input."]
1232    #[inline(always)]
1233    pub fn _1(self) -> &'a mut W {
1234        self.variant(USELCH_A::_1)
1235    }
1236}
1237impl R {
1238    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source Counter Count Up Enable"]
1239    #[inline(always)]
1240    pub fn usgtrgar(&self) -> USGTRGAR_R {
1241        USGTRGAR_R::new((self.bits & 1) != 0)
1242    }
1243    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source Counter Count Up Enable"]
1244    #[inline(always)]
1245    pub fn usgtrgaf(&self) -> USGTRGAF_R {
1246        USGTRGAF_R::new(((self.bits >> 1) & 1) != 0)
1247    }
1248    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source Counter Count Up Enable"]
1249    #[inline(always)]
1250    pub fn usgtrgbr(&self) -> USGTRGBR_R {
1251        USGTRGBR_R::new(((self.bits >> 2) & 1) != 0)
1252    }
1253    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source Counter Count Up Enable"]
1254    #[inline(always)]
1255    pub fn usgtrgbf(&self) -> USGTRGBF_R {
1256        USGTRGBF_R::new(((self.bits >> 3) & 1) != 0)
1257    }
1258    #[doc = "Bit 4 - GTETRGC Pin Rising Input Source Counter Count Up Enable"]
1259    #[inline(always)]
1260    pub fn usgtrgcr(&self) -> USGTRGCR_R {
1261        USGTRGCR_R::new(((self.bits >> 4) & 1) != 0)
1262    }
1263    #[doc = "Bit 5 - GTETRGC Pin Falling Input Source Counter Count Up Enable"]
1264    #[inline(always)]
1265    pub fn usgtrgcf(&self) -> USGTRGCF_R {
1266        USGTRGCF_R::new(((self.bits >> 5) & 1) != 0)
1267    }
1268    #[doc = "Bit 6 - GTETRGD Pin Rising Input Source Counter Count Up Enable"]
1269    #[inline(always)]
1270    pub fn usgtrgdr(&self) -> USGTRGDR_R {
1271        USGTRGDR_R::new(((self.bits >> 6) & 1) != 0)
1272    }
1273    #[doc = "Bit 7 - GTETRGD Pin Falling Input Source Counter Count Up Enable"]
1274    #[inline(always)]
1275    pub fn usgtrgdf(&self) -> USGTRGDF_R {
1276        USGTRGDF_R::new(((self.bits >> 7) & 1) != 0)
1277    }
1278    #[doc = "Bit 8 - GTIOCA Pin Rising Input during GTIOCB Value Low Source Counter Count Up Enable"]
1279    #[inline(always)]
1280    pub fn uscarbl(&self) -> USCARBL_R {
1281        USCARBL_R::new(((self.bits >> 8) & 1) != 0)
1282    }
1283    #[doc = "Bit 9 - GTIOCA Pin Rising Input during GTIOCB Value High Source Counter Count Up Enable"]
1284    #[inline(always)]
1285    pub fn uscarbh(&self) -> USCARBH_R {
1286        USCARBH_R::new(((self.bits >> 9) & 1) != 0)
1287    }
1288    #[doc = "Bit 10 - GTIOCA Pin Falling Input during GTIOCB Value Low Source Counter Count Up Enable"]
1289    #[inline(always)]
1290    pub fn uscafbl(&self) -> USCAFBL_R {
1291        USCAFBL_R::new(((self.bits >> 10) & 1) != 0)
1292    }
1293    #[doc = "Bit 11 - GTIOCA Pin Falling Input during GTIOCB Value High Source Counter Count Up Enable"]
1294    #[inline(always)]
1295    pub fn uscafbh(&self) -> USCAFBH_R {
1296        USCAFBH_R::new(((self.bits >> 11) & 1) != 0)
1297    }
1298    #[doc = "Bit 12 - GTIOCB Pin Rising Input during GTIOCA Value Low Source Counter Count Up Enable"]
1299    #[inline(always)]
1300    pub fn uscbral(&self) -> USCBRAL_R {
1301        USCBRAL_R::new(((self.bits >> 12) & 1) != 0)
1302    }
1303    #[doc = "Bit 13 - GTIOCB Pin Rising Input during GTIOCA Value High Source Counter Count Up Enable"]
1304    #[inline(always)]
1305    pub fn uscbrah(&self) -> USCBRAH_R {
1306        USCBRAH_R::new(((self.bits >> 13) & 1) != 0)
1307    }
1308    #[doc = "Bit 14 - GTIOCB Pin Falling Input during GTIOCA Value Low Source Counter Count Up Enable"]
1309    #[inline(always)]
1310    pub fn uscbfal(&self) -> USCBFAL_R {
1311        USCBFAL_R::new(((self.bits >> 14) & 1) != 0)
1312    }
1313    #[doc = "Bit 15 - GTIOCB Pin Falling Input during GTIOCA Value High Source Counter Count Up Enable"]
1314    #[inline(always)]
1315    pub fn uscbfah(&self) -> USCBFAH_R {
1316        USCBFAH_R::new(((self.bits >> 15) & 1) != 0)
1317    }
1318    #[doc = "Bit 16 - ELC_GPTA Event Source Counter Count Up Enable"]
1319    #[inline(always)]
1320    pub fn uselca(&self) -> USELCA_R {
1321        USELCA_R::new(((self.bits >> 16) & 1) != 0)
1322    }
1323    #[doc = "Bit 17 - ELC_GPTB Event Source Counter Count Up Enable"]
1324    #[inline(always)]
1325    pub fn uselcb(&self) -> USELCB_R {
1326        USELCB_R::new(((self.bits >> 17) & 1) != 0)
1327    }
1328    #[doc = "Bit 18 - ELC_GPTC Event Source Counter Count Up Enable"]
1329    #[inline(always)]
1330    pub fn uselcc(&self) -> USELCC_R {
1331        USELCC_R::new(((self.bits >> 18) & 1) != 0)
1332    }
1333    #[doc = "Bit 19 - ELC_GPTD Event Source Counter Count Up Enable"]
1334    #[inline(always)]
1335    pub fn uselcd(&self) -> USELCD_R {
1336        USELCD_R::new(((self.bits >> 19) & 1) != 0)
1337    }
1338    #[doc = "Bit 20 - ELC_GPTE Event Source Counter Count Up Enable"]
1339    #[inline(always)]
1340    pub fn uselce(&self) -> USELCE_R {
1341        USELCE_R::new(((self.bits >> 20) & 1) != 0)
1342    }
1343    #[doc = "Bit 21 - ELC_GPTF Event Source Counter Count Up Enable"]
1344    #[inline(always)]
1345    pub fn uselcf(&self) -> USELCF_R {
1346        USELCF_R::new(((self.bits >> 21) & 1) != 0)
1347    }
1348    #[doc = "Bit 22 - ELC_GPTG Event Source Counter Count Up Enable"]
1349    #[inline(always)]
1350    pub fn uselcg(&self) -> USELCG_R {
1351        USELCG_R::new(((self.bits >> 22) & 1) != 0)
1352    }
1353    #[doc = "Bit 23 - ELC_GPTH Event Source Counter Count Up Enable"]
1354    #[inline(always)]
1355    pub fn uselch(&self) -> USELCH_R {
1356        USELCH_R::new(((self.bits >> 23) & 1) != 0)
1357    }
1358}
1359impl W {
1360    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source Counter Count Up Enable"]
1361    #[inline(always)]
1362    #[must_use]
1363    pub fn usgtrgar(&mut self) -> USGTRGAR_W<0> {
1364        USGTRGAR_W::new(self)
1365    }
1366    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source Counter Count Up Enable"]
1367    #[inline(always)]
1368    #[must_use]
1369    pub fn usgtrgaf(&mut self) -> USGTRGAF_W<1> {
1370        USGTRGAF_W::new(self)
1371    }
1372    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source Counter Count Up Enable"]
1373    #[inline(always)]
1374    #[must_use]
1375    pub fn usgtrgbr(&mut self) -> USGTRGBR_W<2> {
1376        USGTRGBR_W::new(self)
1377    }
1378    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source Counter Count Up Enable"]
1379    #[inline(always)]
1380    #[must_use]
1381    pub fn usgtrgbf(&mut self) -> USGTRGBF_W<3> {
1382        USGTRGBF_W::new(self)
1383    }
1384    #[doc = "Bit 4 - GTETRGC Pin Rising Input Source Counter Count Up Enable"]
1385    #[inline(always)]
1386    #[must_use]
1387    pub fn usgtrgcr(&mut self) -> USGTRGCR_W<4> {
1388        USGTRGCR_W::new(self)
1389    }
1390    #[doc = "Bit 5 - GTETRGC Pin Falling Input Source Counter Count Up Enable"]
1391    #[inline(always)]
1392    #[must_use]
1393    pub fn usgtrgcf(&mut self) -> USGTRGCF_W<5> {
1394        USGTRGCF_W::new(self)
1395    }
1396    #[doc = "Bit 6 - GTETRGD Pin Rising Input Source Counter Count Up Enable"]
1397    #[inline(always)]
1398    #[must_use]
1399    pub fn usgtrgdr(&mut self) -> USGTRGDR_W<6> {
1400        USGTRGDR_W::new(self)
1401    }
1402    #[doc = "Bit 7 - GTETRGD Pin Falling Input Source Counter Count Up Enable"]
1403    #[inline(always)]
1404    #[must_use]
1405    pub fn usgtrgdf(&mut self) -> USGTRGDF_W<7> {
1406        USGTRGDF_W::new(self)
1407    }
1408    #[doc = "Bit 8 - GTIOCA Pin Rising Input during GTIOCB Value Low Source Counter Count Up Enable"]
1409    #[inline(always)]
1410    #[must_use]
1411    pub fn uscarbl(&mut self) -> USCARBL_W<8> {
1412        USCARBL_W::new(self)
1413    }
1414    #[doc = "Bit 9 - GTIOCA Pin Rising Input during GTIOCB Value High Source Counter Count Up Enable"]
1415    #[inline(always)]
1416    #[must_use]
1417    pub fn uscarbh(&mut self) -> USCARBH_W<9> {
1418        USCARBH_W::new(self)
1419    }
1420    #[doc = "Bit 10 - GTIOCA Pin Falling Input during GTIOCB Value Low Source Counter Count Up Enable"]
1421    #[inline(always)]
1422    #[must_use]
1423    pub fn uscafbl(&mut self) -> USCAFBL_W<10> {
1424        USCAFBL_W::new(self)
1425    }
1426    #[doc = "Bit 11 - GTIOCA Pin Falling Input during GTIOCB Value High Source Counter Count Up Enable"]
1427    #[inline(always)]
1428    #[must_use]
1429    pub fn uscafbh(&mut self) -> USCAFBH_W<11> {
1430        USCAFBH_W::new(self)
1431    }
1432    #[doc = "Bit 12 - GTIOCB Pin Rising Input during GTIOCA Value Low Source Counter Count Up Enable"]
1433    #[inline(always)]
1434    #[must_use]
1435    pub fn uscbral(&mut self) -> USCBRAL_W<12> {
1436        USCBRAL_W::new(self)
1437    }
1438    #[doc = "Bit 13 - GTIOCB Pin Rising Input during GTIOCA Value High Source Counter Count Up Enable"]
1439    #[inline(always)]
1440    #[must_use]
1441    pub fn uscbrah(&mut self) -> USCBRAH_W<13> {
1442        USCBRAH_W::new(self)
1443    }
1444    #[doc = "Bit 14 - GTIOCB Pin Falling Input during GTIOCA Value Low Source Counter Count Up Enable"]
1445    #[inline(always)]
1446    #[must_use]
1447    pub fn uscbfal(&mut self) -> USCBFAL_W<14> {
1448        USCBFAL_W::new(self)
1449    }
1450    #[doc = "Bit 15 - GTIOCB Pin Falling Input during GTIOCA Value High Source Counter Count Up Enable"]
1451    #[inline(always)]
1452    #[must_use]
1453    pub fn uscbfah(&mut self) -> USCBFAH_W<15> {
1454        USCBFAH_W::new(self)
1455    }
1456    #[doc = "Bit 16 - ELC_GPTA Event Source Counter Count Up Enable"]
1457    #[inline(always)]
1458    #[must_use]
1459    pub fn uselca(&mut self) -> USELCA_W<16> {
1460        USELCA_W::new(self)
1461    }
1462    #[doc = "Bit 17 - ELC_GPTB Event Source Counter Count Up Enable"]
1463    #[inline(always)]
1464    #[must_use]
1465    pub fn uselcb(&mut self) -> USELCB_W<17> {
1466        USELCB_W::new(self)
1467    }
1468    #[doc = "Bit 18 - ELC_GPTC Event Source Counter Count Up Enable"]
1469    #[inline(always)]
1470    #[must_use]
1471    pub fn uselcc(&mut self) -> USELCC_W<18> {
1472        USELCC_W::new(self)
1473    }
1474    #[doc = "Bit 19 - ELC_GPTD Event Source Counter Count Up Enable"]
1475    #[inline(always)]
1476    #[must_use]
1477    pub fn uselcd(&mut self) -> USELCD_W<19> {
1478        USELCD_W::new(self)
1479    }
1480    #[doc = "Bit 20 - ELC_GPTE Event Source Counter Count Up Enable"]
1481    #[inline(always)]
1482    #[must_use]
1483    pub fn uselce(&mut self) -> USELCE_W<20> {
1484        USELCE_W::new(self)
1485    }
1486    #[doc = "Bit 21 - ELC_GPTF Event Source Counter Count Up Enable"]
1487    #[inline(always)]
1488    #[must_use]
1489    pub fn uselcf(&mut self) -> USELCF_W<21> {
1490        USELCF_W::new(self)
1491    }
1492    #[doc = "Bit 22 - ELC_GPTG Event Source Counter Count Up Enable"]
1493    #[inline(always)]
1494    #[must_use]
1495    pub fn uselcg(&mut self) -> USELCG_W<22> {
1496        USELCG_W::new(self)
1497    }
1498    #[doc = "Bit 23 - ELC_GPTH Event Source Counter Count Up Enable"]
1499    #[inline(always)]
1500    #[must_use]
1501    pub fn uselch(&mut self) -> USELCH_W<23> {
1502        USELCH_W::new(self)
1503    }
1504    #[doc = "Writes raw bits to the register."]
1505    #[inline(always)]
1506    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1507        self.0.bits(bits);
1508        self
1509    }
1510}
1511#[doc = "General PWM Timer Up Count Source Select Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [gtupsr](index.html) module"]
1512pub struct GTUPSR_SPEC;
1513impl crate::RegisterSpec for GTUPSR_SPEC {
1514    type Ux = u32;
1515}
1516#[doc = "`read()` method returns [gtupsr::R](R) reader structure"]
1517impl crate::Readable for GTUPSR_SPEC {
1518    type Reader = R;
1519}
1520#[doc = "`write(|w| ..)` method takes [gtupsr::W](W) writer structure"]
1521impl crate::Writable for GTUPSR_SPEC {
1522    type Writer = W;
1523    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1524    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1525}
1526#[doc = "`reset()` method sets GTUPSR to value 0"]
1527impl crate::Resettable for GTUPSR_SPEC {
1528    const RESET_VALUE: Self::Ux = 0;
1529}