ra2e2/gpt164/
gtcsr.rs

1#[doc = "Register `GTCSR` reader"]
2pub struct R(crate::R<GTCSR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<GTCSR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<GTCSR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<GTCSR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `GTCSR` writer"]
17pub struct W(crate::W<GTCSR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<GTCSR_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<GTCSR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<GTCSR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `CSGTRGAR` reader - GTETRGA Pin Rising Input Source Counter Clear Enable"]
38pub type CSGTRGAR_R = crate::BitReader<CSGTRGAR_A>;
39#[doc = "GTETRGA Pin Rising Input Source Counter Clear Enable\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum CSGTRGAR_A {
42    #[doc = "0: Counter clear disabled on the rising edge of GTETRGA input"]
43    _0 = 0,
44    #[doc = "1: Counter clear enabled on the rising edge of GTETRGA input"]
45    _1 = 1,
46}
47impl From<CSGTRGAR_A> for bool {
48    #[inline(always)]
49    fn from(variant: CSGTRGAR_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl CSGTRGAR_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> CSGTRGAR_A {
57        match self.bits {
58            false => CSGTRGAR_A::_0,
59            true => CSGTRGAR_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 == CSGTRGAR_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 == CSGTRGAR_A::_1
71    }
72}
73#[doc = "Field `CSGTRGAR` writer - GTETRGA Pin Rising Input Source Counter Clear Enable"]
74pub type CSGTRGAR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSGTRGAR_A, O>;
75impl<'a, const O: u8> CSGTRGAR_W<'a, O> {
76    #[doc = "Counter clear disabled on the rising edge of GTETRGA input"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(CSGTRGAR_A::_0)
80    }
81    #[doc = "Counter clear enabled on the rising edge of GTETRGA input"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(CSGTRGAR_A::_1)
85    }
86}
87#[doc = "Field `CSGTRGAF` reader - GTETRGA Pin Falling Input Source Counter Clear Enable"]
88pub type CSGTRGAF_R = crate::BitReader<CSGTRGAF_A>;
89#[doc = "GTETRGA Pin Falling Input Source Counter Clear Enable\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum CSGTRGAF_A {
92    #[doc = "0: Counter clear disabled on the falling edge of GTETRGA input"]
93    _0 = 0,
94    #[doc = "1: Counter clear enabled on the falling edge of GTETRGA input"]
95    _1 = 1,
96}
97impl From<CSGTRGAF_A> for bool {
98    #[inline(always)]
99    fn from(variant: CSGTRGAF_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl CSGTRGAF_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> CSGTRGAF_A {
107        match self.bits {
108            false => CSGTRGAF_A::_0,
109            true => CSGTRGAF_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 == CSGTRGAF_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 == CSGTRGAF_A::_1
121    }
122}
123#[doc = "Field `CSGTRGAF` writer - GTETRGA Pin Falling Input Source Counter Clear Enable"]
124pub type CSGTRGAF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSGTRGAF_A, O>;
125impl<'a, const O: u8> CSGTRGAF_W<'a, O> {
126    #[doc = "Counter clear disabled on the falling edge of GTETRGA input"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(CSGTRGAF_A::_0)
130    }
131    #[doc = "Counter clear enabled on the falling edge of GTETRGA input"]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(CSGTRGAF_A::_1)
135    }
136}
137#[doc = "Field `CSGTRGBR` reader - GTETRGB Pin Rising Input Source Counter Clear Enable"]
138pub type CSGTRGBR_R = crate::BitReader<CSGTRGBR_A>;
139#[doc = "GTETRGB Pin Rising Input Source Counter Clear Enable\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum CSGTRGBR_A {
142    #[doc = "0: Disable counter clear on the rising edge of GTETRGB input"]
143    _0 = 0,
144    #[doc = "1: Enable counter clear on the rising edge of GTETRGB input"]
145    _1 = 1,
146}
147impl From<CSGTRGBR_A> for bool {
148    #[inline(always)]
149    fn from(variant: CSGTRGBR_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl CSGTRGBR_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> CSGTRGBR_A {
157        match self.bits {
158            false => CSGTRGBR_A::_0,
159            true => CSGTRGBR_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 == CSGTRGBR_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 == CSGTRGBR_A::_1
171    }
172}
173#[doc = "Field `CSGTRGBR` writer - GTETRGB Pin Rising Input Source Counter Clear Enable"]
174pub type CSGTRGBR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSGTRGBR_A, O>;
175impl<'a, const O: u8> CSGTRGBR_W<'a, O> {
176    #[doc = "Disable counter clear on the rising edge of GTETRGB input"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(CSGTRGBR_A::_0)
180    }
181    #[doc = "Enable counter clear on the rising edge of GTETRGB input"]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(CSGTRGBR_A::_1)
185    }
186}
187#[doc = "Field `CSGTRGBF` reader - GTETRGB Pin Falling Input Source Counter Clear Enable"]
188pub type CSGTRGBF_R = crate::BitReader<CSGTRGBF_A>;
189#[doc = "GTETRGB Pin Falling Input Source Counter Clear Enable\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum CSGTRGBF_A {
192    #[doc = "0: Counter clear disabled on the falling edge of GTETRGB input"]
193    _0 = 0,
194    #[doc = "1: Counter clear enabled on the falling edge of GTETRGB input"]
195    _1 = 1,
196}
197impl From<CSGTRGBF_A> for bool {
198    #[inline(always)]
199    fn from(variant: CSGTRGBF_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl CSGTRGBF_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> CSGTRGBF_A {
207        match self.bits {
208            false => CSGTRGBF_A::_0,
209            true => CSGTRGBF_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 == CSGTRGBF_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 == CSGTRGBF_A::_1
221    }
222}
223#[doc = "Field `CSGTRGBF` writer - GTETRGB Pin Falling Input Source Counter Clear Enable"]
224pub type CSGTRGBF_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSGTRGBF_A, O>;
225impl<'a, const O: u8> CSGTRGBF_W<'a, O> {
226    #[doc = "Counter clear disabled on the falling edge of GTETRGB input"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(CSGTRGBF_A::_0)
230    }
231    #[doc = "Counter clear enabled on the falling edge of GTETRGB input"]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(CSGTRGBF_A::_1)
235    }
236}
237#[doc = "Field `CSCARBL` reader - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source Counter Clear Enable"]
238pub type CSCARBL_R = crate::BitReader<CSCARBL_A>;
239#[doc = "GTIOCnA Pin Rising Input during GTIOCnB Value Low Source Counter Clear Enable\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum CSCARBL_A {
242    #[doc = "0: Counter clear disabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
243    _0 = 0,
244    #[doc = "1: Counter clear enabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
245    _1 = 1,
246}
247impl From<CSCARBL_A> for bool {
248    #[inline(always)]
249    fn from(variant: CSCARBL_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl CSCARBL_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> CSCARBL_A {
257        match self.bits {
258            false => CSCARBL_A::_0,
259            true => CSCARBL_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 == CSCARBL_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 == CSCARBL_A::_1
271    }
272}
273#[doc = "Field `CSCARBL` writer - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source Counter Clear Enable"]
274pub type CSCARBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCARBL_A, O>;
275impl<'a, const O: u8> CSCARBL_W<'a, O> {
276    #[doc = "Counter clear disabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(CSCARBL_A::_0)
280    }
281    #[doc = "Counter clear enabled on the rising edge of GTIOCnA input when GTIOCnB input is 0"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(CSCARBL_A::_1)
285    }
286}
287#[doc = "Field `CSCARBH` reader - GTIOCnA Pin Rising Input during GTIOCnB Value High Source Counter Clear Enable"]
288pub type CSCARBH_R = crate::BitReader<CSCARBH_A>;
289#[doc = "GTIOCnA Pin Rising Input during GTIOCnB Value High Source Counter Clear Enable\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum CSCARBH_A {
292    #[doc = "0: Counter clear disabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
293    _0 = 0,
294    #[doc = "1: Counter clear enabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
295    _1 = 1,
296}
297impl From<CSCARBH_A> for bool {
298    #[inline(always)]
299    fn from(variant: CSCARBH_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl CSCARBH_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> CSCARBH_A {
307        match self.bits {
308            false => CSCARBH_A::_0,
309            true => CSCARBH_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 == CSCARBH_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 == CSCARBH_A::_1
321    }
322}
323#[doc = "Field `CSCARBH` writer - GTIOCnA Pin Rising Input during GTIOCnB Value High Source Counter Clear Enable"]
324pub type CSCARBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCARBH_A, O>;
325impl<'a, const O: u8> CSCARBH_W<'a, O> {
326    #[doc = "Counter clear disabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(CSCARBH_A::_0)
330    }
331    #[doc = "Counter clear enabled on the rising edge of GTIOCnA input when GTIOCnB input is 1"]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(CSCARBH_A::_1)
335    }
336}
337#[doc = "Field `CSCAFBL` reader - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source Counter Clear Enable"]
338pub type CSCAFBL_R = crate::BitReader<CSCAFBL_A>;
339#[doc = "GTIOCnA Pin Falling Input during GTIOCnB Value Low Source Counter Clear Enable\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum CSCAFBL_A {
342    #[doc = "0: Counter clear disabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
343    _0 = 0,
344    #[doc = "1: Counter clear enabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
345    _1 = 1,
346}
347impl From<CSCAFBL_A> for bool {
348    #[inline(always)]
349    fn from(variant: CSCAFBL_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl CSCAFBL_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> CSCAFBL_A {
357        match self.bits {
358            false => CSCAFBL_A::_0,
359            true => CSCAFBL_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 == CSCAFBL_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 == CSCAFBL_A::_1
371    }
372}
373#[doc = "Field `CSCAFBL` writer - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source Counter Clear Enable"]
374pub type CSCAFBL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCAFBL_A, O>;
375impl<'a, const O: u8> CSCAFBL_W<'a, O> {
376    #[doc = "Counter clear disabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(CSCAFBL_A::_0)
380    }
381    #[doc = "Counter clear enabled on the falling edge of GTIOCnA input when GTIOCnB input is 0"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(CSCAFBL_A::_1)
385    }
386}
387#[doc = "Field `CSCAFBH` reader - GTIOCnA Pin Falling Input during GTIOCnB Value High Source Counter Clear Enable"]
388pub type CSCAFBH_R = crate::BitReader<CSCAFBH_A>;
389#[doc = "GTIOCnA Pin Falling Input during GTIOCnB Value High Source Counter Clear Enable\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum CSCAFBH_A {
392    #[doc = "0: Counter clear disabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
393    _0 = 0,
394    #[doc = "1: Counter clear enabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
395    _1 = 1,
396}
397impl From<CSCAFBH_A> for bool {
398    #[inline(always)]
399    fn from(variant: CSCAFBH_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl CSCAFBH_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> CSCAFBH_A {
407        match self.bits {
408            false => CSCAFBH_A::_0,
409            true => CSCAFBH_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 == CSCAFBH_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 == CSCAFBH_A::_1
421    }
422}
423#[doc = "Field `CSCAFBH` writer - GTIOCnA Pin Falling Input during GTIOCnB Value High Source Counter Clear Enable"]
424pub type CSCAFBH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCAFBH_A, O>;
425impl<'a, const O: u8> CSCAFBH_W<'a, O> {
426    #[doc = "Counter clear disabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(CSCAFBH_A::_0)
430    }
431    #[doc = "Counter clear enabled on the falling edge of GTIOCnA input when GTIOCnB input is 1"]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(CSCAFBH_A::_1)
435    }
436}
437#[doc = "Field `CSCBRAL` reader - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source Counter Clear Enable"]
438pub type CSCBRAL_R = crate::BitReader<CSCBRAL_A>;
439#[doc = "GTIOCnB Pin Rising Input during GTIOCnA Value Low Source Counter Clear Enable\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum CSCBRAL_A {
442    #[doc = "0: Counter clear disabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
443    _0 = 0,
444    #[doc = "1: Counter clear enabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
445    _1 = 1,
446}
447impl From<CSCBRAL_A> for bool {
448    #[inline(always)]
449    fn from(variant: CSCBRAL_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl CSCBRAL_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> CSCBRAL_A {
457        match self.bits {
458            false => CSCBRAL_A::_0,
459            true => CSCBRAL_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 == CSCBRAL_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 == CSCBRAL_A::_1
471    }
472}
473#[doc = "Field `CSCBRAL` writer - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source Counter Clear Enable"]
474pub type CSCBRAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCBRAL_A, O>;
475impl<'a, const O: u8> CSCBRAL_W<'a, O> {
476    #[doc = "Counter clear disabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(CSCBRAL_A::_0)
480    }
481    #[doc = "Counter clear enabled on the rising edge of GTIOCnB input when GTIOCnA input is 0"]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(CSCBRAL_A::_1)
485    }
486}
487#[doc = "Field `CSCBRAH` reader - GTIOCnB Pin Rising Input during GTIOCnA Value High Source Counter Clear Enable"]
488pub type CSCBRAH_R = crate::BitReader<CSCBRAH_A>;
489#[doc = "GTIOCnB Pin Rising Input during GTIOCnA Value High Source Counter Clear Enable\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum CSCBRAH_A {
492    #[doc = "0: Counter clear disabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
493    _0 = 0,
494    #[doc = "1: Counter clear enabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
495    _1 = 1,
496}
497impl From<CSCBRAH_A> for bool {
498    #[inline(always)]
499    fn from(variant: CSCBRAH_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl CSCBRAH_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> CSCBRAH_A {
507        match self.bits {
508            false => CSCBRAH_A::_0,
509            true => CSCBRAH_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 == CSCBRAH_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 == CSCBRAH_A::_1
521    }
522}
523#[doc = "Field `CSCBRAH` writer - GTIOCnB Pin Rising Input during GTIOCnA Value High Source Counter Clear Enable"]
524pub type CSCBRAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCBRAH_A, O>;
525impl<'a, const O: u8> CSCBRAH_W<'a, O> {
526    #[doc = "Counter clear disabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(CSCBRAH_A::_0)
530    }
531    #[doc = "Counter clear enabled on the rising edge of GTIOCnB input when GTIOCnA input is 1"]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(CSCBRAH_A::_1)
535    }
536}
537#[doc = "Field `CSCBFAL` reader - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source Counter Clear Enable"]
538pub type CSCBFAL_R = crate::BitReader<CSCBFAL_A>;
539#[doc = "GTIOCnB Pin Falling Input during GTIOCnA Value Low Source Counter Clear Enable\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum CSCBFAL_A {
542    #[doc = "0: Counter clear disabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
543    _0 = 0,
544    #[doc = "1: Counter clear enabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
545    _1 = 1,
546}
547impl From<CSCBFAL_A> for bool {
548    #[inline(always)]
549    fn from(variant: CSCBFAL_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl CSCBFAL_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> CSCBFAL_A {
557        match self.bits {
558            false => CSCBFAL_A::_0,
559            true => CSCBFAL_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 == CSCBFAL_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 == CSCBFAL_A::_1
571    }
572}
573#[doc = "Field `CSCBFAL` writer - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source Counter Clear Enable"]
574pub type CSCBFAL_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCBFAL_A, O>;
575impl<'a, const O: u8> CSCBFAL_W<'a, O> {
576    #[doc = "Counter clear disabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(CSCBFAL_A::_0)
580    }
581    #[doc = "Counter clear enabled on the falling edge of GTIOCnB input when GTIOCnA input is 0"]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(CSCBFAL_A::_1)
585    }
586}
587#[doc = "Field `CSCBFAH` reader - GTIOCnB Pin Falling Input during GTIOCnA Value High Source Counter Clear Enable"]
588pub type CSCBFAH_R = crate::BitReader<CSCBFAH_A>;
589#[doc = "GTIOCnB Pin Falling Input during GTIOCnA Value High Source Counter Clear Enable\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum CSCBFAH_A {
592    #[doc = "0: Counter clear disabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
593    _0 = 0,
594    #[doc = "1: Counter clear enabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
595    _1 = 1,
596}
597impl From<CSCBFAH_A> for bool {
598    #[inline(always)]
599    fn from(variant: CSCBFAH_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl CSCBFAH_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> CSCBFAH_A {
607        match self.bits {
608            false => CSCBFAH_A::_0,
609            true => CSCBFAH_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 == CSCBFAH_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 == CSCBFAH_A::_1
621    }
622}
623#[doc = "Field `CSCBFAH` writer - GTIOCnB Pin Falling Input during GTIOCnA Value High Source Counter Clear Enable"]
624pub type CSCBFAH_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSCBFAH_A, O>;
625impl<'a, const O: u8> CSCBFAH_W<'a, O> {
626    #[doc = "Counter clear disabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(CSCBFAH_A::_0)
630    }
631    #[doc = "Counter clear enabled on the falling edge of GTIOCnB input when GTIOCnA input is 1"]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(CSCBFAH_A::_1)
635    }
636}
637#[doc = "Field `CSELCA` reader - ELC_GPTA Event Source Counter Clear Enable"]
638pub type CSELCA_R = crate::BitReader<CSELCA_A>;
639#[doc = "ELC_GPTA Event Source Counter Clear Enable\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum CSELCA_A {
642    #[doc = "0: Counter clear disabled at the ELC_GPTA input"]
643    _0 = 0,
644    #[doc = "1: Counter clear enabled at the ELC_GPTA input"]
645    _1 = 1,
646}
647impl From<CSELCA_A> for bool {
648    #[inline(always)]
649    fn from(variant: CSELCA_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl CSELCA_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> CSELCA_A {
657        match self.bits {
658            false => CSELCA_A::_0,
659            true => CSELCA_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 == CSELCA_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 == CSELCA_A::_1
671    }
672}
673#[doc = "Field `CSELCA` writer - ELC_GPTA Event Source Counter Clear Enable"]
674pub type CSELCA_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSELCA_A, O>;
675impl<'a, const O: u8> CSELCA_W<'a, O> {
676    #[doc = "Counter clear disabled at the ELC_GPTA input"]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(CSELCA_A::_0)
680    }
681    #[doc = "Counter clear enabled at the ELC_GPTA input"]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(CSELCA_A::_1)
685    }
686}
687#[doc = "Field `CSELCB` reader - ELC_GPTB Event Source Counter Clear Enable"]
688pub type CSELCB_R = crate::BitReader<CSELCB_A>;
689#[doc = "ELC_GPTB Event Source Counter Clear Enable\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum CSELCB_A {
692    #[doc = "0: Counter clear disabled at the ELC_GPTB input"]
693    _0 = 0,
694    #[doc = "1: Counter clear enabled at the ELC_GPTB input"]
695    _1 = 1,
696}
697impl From<CSELCB_A> for bool {
698    #[inline(always)]
699    fn from(variant: CSELCB_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl CSELCB_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> CSELCB_A {
707        match self.bits {
708            false => CSELCB_A::_0,
709            true => CSELCB_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 == CSELCB_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 == CSELCB_A::_1
721    }
722}
723#[doc = "Field `CSELCB` writer - ELC_GPTB Event Source Counter Clear Enable"]
724pub type CSELCB_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSELCB_A, O>;
725impl<'a, const O: u8> CSELCB_W<'a, O> {
726    #[doc = "Counter clear disabled at the ELC_GPTB input"]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(CSELCB_A::_0)
730    }
731    #[doc = "Counter clear enabled at the ELC_GPTB input"]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(CSELCB_A::_1)
735    }
736}
737#[doc = "Field `CSELCC` reader - ELC_GPTC Event Source Counter Clear Enable"]
738pub type CSELCC_R = crate::BitReader<CSELCC_A>;
739#[doc = "ELC_GPTC Event Source Counter Clear Enable\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum CSELCC_A {
742    #[doc = "0: Counter clear disabled at the ELC_GPTC input"]
743    _0 = 0,
744    #[doc = "1: Counter clear enabled at the ELC_GPTC input"]
745    _1 = 1,
746}
747impl From<CSELCC_A> for bool {
748    #[inline(always)]
749    fn from(variant: CSELCC_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl CSELCC_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> CSELCC_A {
757        match self.bits {
758            false => CSELCC_A::_0,
759            true => CSELCC_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 == CSELCC_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 == CSELCC_A::_1
771    }
772}
773#[doc = "Field `CSELCC` writer - ELC_GPTC Event Source Counter Clear Enable"]
774pub type CSELCC_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSELCC_A, O>;
775impl<'a, const O: u8> CSELCC_W<'a, O> {
776    #[doc = "Counter clear disabled at the ELC_GPTC input"]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(CSELCC_A::_0)
780    }
781    #[doc = "Counter clear enabled at the ELC_GPTC input"]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(CSELCC_A::_1)
785    }
786}
787#[doc = "Field `CSELCD` reader - ELC_GPTD Event Source Counter Clear Enable"]
788pub type CSELCD_R = crate::BitReader<CSELCD_A>;
789#[doc = "ELC_GPTD Event Source Counter Clear Enable\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum CSELCD_A {
792    #[doc = "0: Counter clear disabled at the ELC_GPTD input"]
793    _0 = 0,
794    #[doc = "1: Counter clear enabled at the ELC_GPTD input"]
795    _1 = 1,
796}
797impl From<CSELCD_A> for bool {
798    #[inline(always)]
799    fn from(variant: CSELCD_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl CSELCD_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> CSELCD_A {
807        match self.bits {
808            false => CSELCD_A::_0,
809            true => CSELCD_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 == CSELCD_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 == CSELCD_A::_1
821    }
822}
823#[doc = "Field `CSELCD` writer - ELC_GPTD Event Source Counter Clear Enable"]
824pub type CSELCD_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CSELCD_A, O>;
825impl<'a, const O: u8> CSELCD_W<'a, O> {
826    #[doc = "Counter clear disabled at the ELC_GPTD input"]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(CSELCD_A::_0)
830    }
831    #[doc = "Counter clear enabled at the ELC_GPTD input"]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(CSELCD_A::_1)
835    }
836}
837#[doc = "Field `CCLR` reader - Software Source Counter Clear Enable"]
838pub type CCLR_R = crate::BitReader<CCLR_A>;
839#[doc = "Software Source Counter Clear Enable\n\nValue on reset: 0"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum CCLR_A {
842    #[doc = "0: Counter clear disabled by the GTCLR register"]
843    _0 = 0,
844    #[doc = "1: Counter clear enabled by the GTCLR register"]
845    _1 = 1,
846}
847impl From<CCLR_A> for bool {
848    #[inline(always)]
849    fn from(variant: CCLR_A) -> Self {
850        variant as u8 != 0
851    }
852}
853impl CCLR_R {
854    #[doc = "Get enumerated values variant"]
855    #[inline(always)]
856    pub fn variant(&self) -> CCLR_A {
857        match self.bits {
858            false => CCLR_A::_0,
859            true => CCLR_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 == CCLR_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 == CCLR_A::_1
871    }
872}
873#[doc = "Field `CCLR` writer - Software Source Counter Clear Enable"]
874pub type CCLR_W<'a, const O: u8> = crate::BitWriter<'a, u32, GTCSR_SPEC, CCLR_A, O>;
875impl<'a, const O: u8> CCLR_W<'a, O> {
876    #[doc = "Counter clear disabled by the GTCLR register"]
877    #[inline(always)]
878    pub fn _0(self) -> &'a mut W {
879        self.variant(CCLR_A::_0)
880    }
881    #[doc = "Counter clear enabled by the GTCLR register"]
882    #[inline(always)]
883    pub fn _1(self) -> &'a mut W {
884        self.variant(CCLR_A::_1)
885    }
886}
887impl R {
888    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source Counter Clear Enable"]
889    #[inline(always)]
890    pub fn csgtrgar(&self) -> CSGTRGAR_R {
891        CSGTRGAR_R::new((self.bits & 1) != 0)
892    }
893    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source Counter Clear Enable"]
894    #[inline(always)]
895    pub fn csgtrgaf(&self) -> CSGTRGAF_R {
896        CSGTRGAF_R::new(((self.bits >> 1) & 1) != 0)
897    }
898    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source Counter Clear Enable"]
899    #[inline(always)]
900    pub fn csgtrgbr(&self) -> CSGTRGBR_R {
901        CSGTRGBR_R::new(((self.bits >> 2) & 1) != 0)
902    }
903    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source Counter Clear Enable"]
904    #[inline(always)]
905    pub fn csgtrgbf(&self) -> CSGTRGBF_R {
906        CSGTRGBF_R::new(((self.bits >> 3) & 1) != 0)
907    }
908    #[doc = "Bit 8 - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source Counter Clear Enable"]
909    #[inline(always)]
910    pub fn cscarbl(&self) -> CSCARBL_R {
911        CSCARBL_R::new(((self.bits >> 8) & 1) != 0)
912    }
913    #[doc = "Bit 9 - GTIOCnA Pin Rising Input during GTIOCnB Value High Source Counter Clear Enable"]
914    #[inline(always)]
915    pub fn cscarbh(&self) -> CSCARBH_R {
916        CSCARBH_R::new(((self.bits >> 9) & 1) != 0)
917    }
918    #[doc = "Bit 10 - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source Counter Clear Enable"]
919    #[inline(always)]
920    pub fn cscafbl(&self) -> CSCAFBL_R {
921        CSCAFBL_R::new(((self.bits >> 10) & 1) != 0)
922    }
923    #[doc = "Bit 11 - GTIOCnA Pin Falling Input during GTIOCnB Value High Source Counter Clear Enable"]
924    #[inline(always)]
925    pub fn cscafbh(&self) -> CSCAFBH_R {
926        CSCAFBH_R::new(((self.bits >> 11) & 1) != 0)
927    }
928    #[doc = "Bit 12 - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source Counter Clear Enable"]
929    #[inline(always)]
930    pub fn cscbral(&self) -> CSCBRAL_R {
931        CSCBRAL_R::new(((self.bits >> 12) & 1) != 0)
932    }
933    #[doc = "Bit 13 - GTIOCnB Pin Rising Input during GTIOCnA Value High Source Counter Clear Enable"]
934    #[inline(always)]
935    pub fn cscbrah(&self) -> CSCBRAH_R {
936        CSCBRAH_R::new(((self.bits >> 13) & 1) != 0)
937    }
938    #[doc = "Bit 14 - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source Counter Clear Enable"]
939    #[inline(always)]
940    pub fn cscbfal(&self) -> CSCBFAL_R {
941        CSCBFAL_R::new(((self.bits >> 14) & 1) != 0)
942    }
943    #[doc = "Bit 15 - GTIOCnB Pin Falling Input during GTIOCnA Value High Source Counter Clear Enable"]
944    #[inline(always)]
945    pub fn cscbfah(&self) -> CSCBFAH_R {
946        CSCBFAH_R::new(((self.bits >> 15) & 1) != 0)
947    }
948    #[doc = "Bit 16 - ELC_GPTA Event Source Counter Clear Enable"]
949    #[inline(always)]
950    pub fn cselca(&self) -> CSELCA_R {
951        CSELCA_R::new(((self.bits >> 16) & 1) != 0)
952    }
953    #[doc = "Bit 17 - ELC_GPTB Event Source Counter Clear Enable"]
954    #[inline(always)]
955    pub fn cselcb(&self) -> CSELCB_R {
956        CSELCB_R::new(((self.bits >> 17) & 1) != 0)
957    }
958    #[doc = "Bit 18 - ELC_GPTC Event Source Counter Clear Enable"]
959    #[inline(always)]
960    pub fn cselcc(&self) -> CSELCC_R {
961        CSELCC_R::new(((self.bits >> 18) & 1) != 0)
962    }
963    #[doc = "Bit 19 - ELC_GPTD Event Source Counter Clear Enable"]
964    #[inline(always)]
965    pub fn cselcd(&self) -> CSELCD_R {
966        CSELCD_R::new(((self.bits >> 19) & 1) != 0)
967    }
968    #[doc = "Bit 31 - Software Source Counter Clear Enable"]
969    #[inline(always)]
970    pub fn cclr(&self) -> CCLR_R {
971        CCLR_R::new(((self.bits >> 31) & 1) != 0)
972    }
973}
974impl W {
975    #[doc = "Bit 0 - GTETRGA Pin Rising Input Source Counter Clear Enable"]
976    #[inline(always)]
977    #[must_use]
978    pub fn csgtrgar(&mut self) -> CSGTRGAR_W<0> {
979        CSGTRGAR_W::new(self)
980    }
981    #[doc = "Bit 1 - GTETRGA Pin Falling Input Source Counter Clear Enable"]
982    #[inline(always)]
983    #[must_use]
984    pub fn csgtrgaf(&mut self) -> CSGTRGAF_W<1> {
985        CSGTRGAF_W::new(self)
986    }
987    #[doc = "Bit 2 - GTETRGB Pin Rising Input Source Counter Clear Enable"]
988    #[inline(always)]
989    #[must_use]
990    pub fn csgtrgbr(&mut self) -> CSGTRGBR_W<2> {
991        CSGTRGBR_W::new(self)
992    }
993    #[doc = "Bit 3 - GTETRGB Pin Falling Input Source Counter Clear Enable"]
994    #[inline(always)]
995    #[must_use]
996    pub fn csgtrgbf(&mut self) -> CSGTRGBF_W<3> {
997        CSGTRGBF_W::new(self)
998    }
999    #[doc = "Bit 8 - GTIOCnA Pin Rising Input during GTIOCnB Value Low Source Counter Clear Enable"]
1000    #[inline(always)]
1001    #[must_use]
1002    pub fn cscarbl(&mut self) -> CSCARBL_W<8> {
1003        CSCARBL_W::new(self)
1004    }
1005    #[doc = "Bit 9 - GTIOCnA Pin Rising Input during GTIOCnB Value High Source Counter Clear Enable"]
1006    #[inline(always)]
1007    #[must_use]
1008    pub fn cscarbh(&mut self) -> CSCARBH_W<9> {
1009        CSCARBH_W::new(self)
1010    }
1011    #[doc = "Bit 10 - GTIOCnA Pin Falling Input during GTIOCnB Value Low Source Counter Clear Enable"]
1012    #[inline(always)]
1013    #[must_use]
1014    pub fn cscafbl(&mut self) -> CSCAFBL_W<10> {
1015        CSCAFBL_W::new(self)
1016    }
1017    #[doc = "Bit 11 - GTIOCnA Pin Falling Input during GTIOCnB Value High Source Counter Clear Enable"]
1018    #[inline(always)]
1019    #[must_use]
1020    pub fn cscafbh(&mut self) -> CSCAFBH_W<11> {
1021        CSCAFBH_W::new(self)
1022    }
1023    #[doc = "Bit 12 - GTIOCnB Pin Rising Input during GTIOCnA Value Low Source Counter Clear Enable"]
1024    #[inline(always)]
1025    #[must_use]
1026    pub fn cscbral(&mut self) -> CSCBRAL_W<12> {
1027        CSCBRAL_W::new(self)
1028    }
1029    #[doc = "Bit 13 - GTIOCnB Pin Rising Input during GTIOCnA Value High Source Counter Clear Enable"]
1030    #[inline(always)]
1031    #[must_use]
1032    pub fn cscbrah(&mut self) -> CSCBRAH_W<13> {
1033        CSCBRAH_W::new(self)
1034    }
1035    #[doc = "Bit 14 - GTIOCnB Pin Falling Input during GTIOCnA Value Low Source Counter Clear Enable"]
1036    #[inline(always)]
1037    #[must_use]
1038    pub fn cscbfal(&mut self) -> CSCBFAL_W<14> {
1039        CSCBFAL_W::new(self)
1040    }
1041    #[doc = "Bit 15 - GTIOCnB Pin Falling Input during GTIOCnA Value High Source Counter Clear Enable"]
1042    #[inline(always)]
1043    #[must_use]
1044    pub fn cscbfah(&mut self) -> CSCBFAH_W<15> {
1045        CSCBFAH_W::new(self)
1046    }
1047    #[doc = "Bit 16 - ELC_GPTA Event Source Counter Clear Enable"]
1048    #[inline(always)]
1049    #[must_use]
1050    pub fn cselca(&mut self) -> CSELCA_W<16> {
1051        CSELCA_W::new(self)
1052    }
1053    #[doc = "Bit 17 - ELC_GPTB Event Source Counter Clear Enable"]
1054    #[inline(always)]
1055    #[must_use]
1056    pub fn cselcb(&mut self) -> CSELCB_W<17> {
1057        CSELCB_W::new(self)
1058    }
1059    #[doc = "Bit 18 - ELC_GPTC Event Source Counter Clear Enable"]
1060    #[inline(always)]
1061    #[must_use]
1062    pub fn cselcc(&mut self) -> CSELCC_W<18> {
1063        CSELCC_W::new(self)
1064    }
1065    #[doc = "Bit 19 - ELC_GPTD Event Source Counter Clear Enable"]
1066    #[inline(always)]
1067    #[must_use]
1068    pub fn cselcd(&mut self) -> CSELCD_W<19> {
1069        CSELCD_W::new(self)
1070    }
1071    #[doc = "Bit 31 - Software Source Counter Clear Enable"]
1072    #[inline(always)]
1073    #[must_use]
1074    pub fn cclr(&mut self) -> CCLR_W<31> {
1075        CCLR_W::new(self)
1076    }
1077    #[doc = "Writes raw bits to the register."]
1078    #[inline(always)]
1079    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1080        self.0.bits(bits);
1081        self
1082    }
1083}
1084#[doc = "General PWM Timer Clear 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 [gtcsr](index.html) module"]
1085pub struct GTCSR_SPEC;
1086impl crate::RegisterSpec for GTCSR_SPEC {
1087    type Ux = u32;
1088}
1089#[doc = "`read()` method returns [gtcsr::R](R) reader structure"]
1090impl crate::Readable for GTCSR_SPEC {
1091    type Reader = R;
1092}
1093#[doc = "`write(|w| ..)` method takes [gtcsr::W](W) writer structure"]
1094impl crate::Writable for GTCSR_SPEC {
1095    type Writer = W;
1096    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1097    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1098}
1099#[doc = "`reset()` method sets GTCSR to value 0"]
1100impl crate::Resettable for GTCSR_SPEC {
1101    const RESET_VALUE: Self::Ux = 0;
1102}