efm32gg12b810_pac/rtcc/
cc0_ctrl.rs

1#[doc = "Register `CC0_CTRL` reader"]
2pub struct R(crate::R<CC0_CTRL_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<CC0_CTRL_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<CC0_CTRL_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<CC0_CTRL_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `CC0_CTRL` writer"]
17pub struct W(crate::W<CC0_CTRL_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<CC0_CTRL_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<CC0_CTRL_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<CC0_CTRL_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "CC Channel Mode\n\nValue on reset: 0"]
38#[derive(Clone, Copy, Debug, PartialEq)]
39#[repr(u8)]
40pub enum MODE_A {
41    #[doc = "0: Compare/Capture channel turned off"]
42    OFF = 0,
43    #[doc = "1: Input capture"]
44    INPUTCAPTURE = 1,
45    #[doc = "2: Output compare"]
46    OUTPUTCOMPARE = 2,
47}
48impl From<MODE_A> for u8 {
49    #[inline(always)]
50    fn from(variant: MODE_A) -> Self {
51        variant as _
52    }
53}
54#[doc = "Field `MODE` reader - CC Channel Mode"]
55pub type MODE_R = crate::FieldReader<u8, MODE_A>;
56impl MODE_R {
57    #[doc = "Get enumerated values variant"]
58    #[inline(always)]
59    pub fn variant(&self) -> Option<MODE_A> {
60        match self.bits {
61            0 => Some(MODE_A::OFF),
62            1 => Some(MODE_A::INPUTCAPTURE),
63            2 => Some(MODE_A::OUTPUTCOMPARE),
64            _ => None,
65        }
66    }
67    #[doc = "Checks if the value of the field is `OFF`"]
68    #[inline(always)]
69    pub fn is_off(&self) -> bool {
70        *self == MODE_A::OFF
71    }
72    #[doc = "Checks if the value of the field is `INPUTCAPTURE`"]
73    #[inline(always)]
74    pub fn is_inputcapture(&self) -> bool {
75        *self == MODE_A::INPUTCAPTURE
76    }
77    #[doc = "Checks if the value of the field is `OUTPUTCOMPARE`"]
78    #[inline(always)]
79    pub fn is_outputcompare(&self) -> bool {
80        *self == MODE_A::OUTPUTCOMPARE
81    }
82}
83#[doc = "Field `MODE` writer - CC Channel Mode"]
84pub type MODE_W<'a> = crate::FieldWriter<'a, u32, CC0_CTRL_SPEC, u8, MODE_A, 2, 0>;
85impl<'a> MODE_W<'a> {
86    #[doc = "Compare/Capture channel turned off"]
87    #[inline(always)]
88    pub fn off(self) -> &'a mut W {
89        self.variant(MODE_A::OFF)
90    }
91    #[doc = "Input capture"]
92    #[inline(always)]
93    pub fn inputcapture(self) -> &'a mut W {
94        self.variant(MODE_A::INPUTCAPTURE)
95    }
96    #[doc = "Output compare"]
97    #[inline(always)]
98    pub fn outputcompare(self) -> &'a mut W {
99        self.variant(MODE_A::OUTPUTCOMPARE)
100    }
101}
102#[doc = "Compare Match Output Action\n\nValue on reset: 0"]
103#[derive(Clone, Copy, Debug, PartialEq)]
104#[repr(u8)]
105pub enum CMOA_A {
106    #[doc = "0: A single clock cycle pulse is generated on output"]
107    PULSE = 0,
108    #[doc = "1: Toggle output on compare match"]
109    TOGGLE = 1,
110    #[doc = "2: Clear output on compare match"]
111    CLEAR = 2,
112    #[doc = "3: Set output on compare match"]
113    SET = 3,
114}
115impl From<CMOA_A> for u8 {
116    #[inline(always)]
117    fn from(variant: CMOA_A) -> Self {
118        variant as _
119    }
120}
121#[doc = "Field `CMOA` reader - Compare Match Output Action"]
122pub type CMOA_R = crate::FieldReader<u8, CMOA_A>;
123impl CMOA_R {
124    #[doc = "Get enumerated values variant"]
125    #[inline(always)]
126    pub fn variant(&self) -> CMOA_A {
127        match self.bits {
128            0 => CMOA_A::PULSE,
129            1 => CMOA_A::TOGGLE,
130            2 => CMOA_A::CLEAR,
131            3 => CMOA_A::SET,
132            _ => unreachable!(),
133        }
134    }
135    #[doc = "Checks if the value of the field is `PULSE`"]
136    #[inline(always)]
137    pub fn is_pulse(&self) -> bool {
138        *self == CMOA_A::PULSE
139    }
140    #[doc = "Checks if the value of the field is `TOGGLE`"]
141    #[inline(always)]
142    pub fn is_toggle(&self) -> bool {
143        *self == CMOA_A::TOGGLE
144    }
145    #[doc = "Checks if the value of the field is `CLEAR`"]
146    #[inline(always)]
147    pub fn is_clear(&self) -> bool {
148        *self == CMOA_A::CLEAR
149    }
150    #[doc = "Checks if the value of the field is `SET`"]
151    #[inline(always)]
152    pub fn is_set(&self) -> bool {
153        *self == CMOA_A::SET
154    }
155}
156#[doc = "Field `CMOA` writer - Compare Match Output Action"]
157pub type CMOA_W<'a> = crate::FieldWriterSafe<'a, u32, CC0_CTRL_SPEC, u8, CMOA_A, 2, 2>;
158impl<'a> CMOA_W<'a> {
159    #[doc = "A single clock cycle pulse is generated on output"]
160    #[inline(always)]
161    pub fn pulse(self) -> &'a mut W {
162        self.variant(CMOA_A::PULSE)
163    }
164    #[doc = "Toggle output on compare match"]
165    #[inline(always)]
166    pub fn toggle(self) -> &'a mut W {
167        self.variant(CMOA_A::TOGGLE)
168    }
169    #[doc = "Clear output on compare match"]
170    #[inline(always)]
171    pub fn clear(self) -> &'a mut W {
172        self.variant(CMOA_A::CLEAR)
173    }
174    #[doc = "Set output on compare match"]
175    #[inline(always)]
176    pub fn set(self) -> &'a mut W {
177        self.variant(CMOA_A::SET)
178    }
179}
180#[doc = "Input Capture Edge Select\n\nValue on reset: 0"]
181#[derive(Clone, Copy, Debug, PartialEq)]
182#[repr(u8)]
183pub enum ICEDGE_A {
184    #[doc = "0: Rising edges detected"]
185    RISING = 0,
186    #[doc = "1: Falling edges detected"]
187    FALLING = 1,
188    #[doc = "2: Both edges detected"]
189    BOTH = 2,
190    #[doc = "3: No edge detection, signal is left as it is"]
191    NONE = 3,
192}
193impl From<ICEDGE_A> for u8 {
194    #[inline(always)]
195    fn from(variant: ICEDGE_A) -> Self {
196        variant as _
197    }
198}
199#[doc = "Field `ICEDGE` reader - Input Capture Edge Select"]
200pub type ICEDGE_R = crate::FieldReader<u8, ICEDGE_A>;
201impl ICEDGE_R {
202    #[doc = "Get enumerated values variant"]
203    #[inline(always)]
204    pub fn variant(&self) -> ICEDGE_A {
205        match self.bits {
206            0 => ICEDGE_A::RISING,
207            1 => ICEDGE_A::FALLING,
208            2 => ICEDGE_A::BOTH,
209            3 => ICEDGE_A::NONE,
210            _ => unreachable!(),
211        }
212    }
213    #[doc = "Checks if the value of the field is `RISING`"]
214    #[inline(always)]
215    pub fn is_rising(&self) -> bool {
216        *self == ICEDGE_A::RISING
217    }
218    #[doc = "Checks if the value of the field is `FALLING`"]
219    #[inline(always)]
220    pub fn is_falling(&self) -> bool {
221        *self == ICEDGE_A::FALLING
222    }
223    #[doc = "Checks if the value of the field is `BOTH`"]
224    #[inline(always)]
225    pub fn is_both(&self) -> bool {
226        *self == ICEDGE_A::BOTH
227    }
228    #[doc = "Checks if the value of the field is `NONE`"]
229    #[inline(always)]
230    pub fn is_none(&self) -> bool {
231        *self == ICEDGE_A::NONE
232    }
233}
234#[doc = "Field `ICEDGE` writer - Input Capture Edge Select"]
235pub type ICEDGE_W<'a> = crate::FieldWriterSafe<'a, u32, CC0_CTRL_SPEC, u8, ICEDGE_A, 2, 4>;
236impl<'a> ICEDGE_W<'a> {
237    #[doc = "Rising edges detected"]
238    #[inline(always)]
239    pub fn rising(self) -> &'a mut W {
240        self.variant(ICEDGE_A::RISING)
241    }
242    #[doc = "Falling edges detected"]
243    #[inline(always)]
244    pub fn falling(self) -> &'a mut W {
245        self.variant(ICEDGE_A::FALLING)
246    }
247    #[doc = "Both edges detected"]
248    #[inline(always)]
249    pub fn both(self) -> &'a mut W {
250        self.variant(ICEDGE_A::BOTH)
251    }
252    #[doc = "No edge detection, signal is left as it is"]
253    #[inline(always)]
254    pub fn none(self) -> &'a mut W {
255        self.variant(ICEDGE_A::NONE)
256    }
257}
258#[doc = "Compare/Capture Channel PRS Input Channel Selection\n\nValue on reset: 0"]
259#[derive(Clone, Copy, Debug, PartialEq)]
260#[repr(u8)]
261pub enum PRSSEL_A {
262    #[doc = "0: PRS Channel 0 selected as input"]
263    PRSCH0 = 0,
264    #[doc = "1: PRS Channel 1 selected as input"]
265    PRSCH1 = 1,
266    #[doc = "2: PRS Channel 2 selected as input"]
267    PRSCH2 = 2,
268    #[doc = "3: PRS Channel 3 selected as input"]
269    PRSCH3 = 3,
270    #[doc = "4: PRS Channel 4 selected as input"]
271    PRSCH4 = 4,
272    #[doc = "5: PRS Channel 5 selected as input"]
273    PRSCH5 = 5,
274    #[doc = "6: PRS Channel 6 selected as input"]
275    PRSCH6 = 6,
276    #[doc = "7: PRS Channel 7 selected as input"]
277    PRSCH7 = 7,
278    #[doc = "8: PRS Channel 8 selected as input"]
279    PRSCH8 = 8,
280    #[doc = "9: PRS Channel 9 selected as input"]
281    PRSCH9 = 9,
282    #[doc = "10: PRS Channel 10 selected as input"]
283    PRSCH10 = 10,
284    #[doc = "11: PRS Channel 11 selected as input"]
285    PRSCH11 = 11,
286    #[doc = "12: PRS Channel 12 selected as input"]
287    PRSCH12 = 12,
288    #[doc = "13: PRS Channel 13 selected as input"]
289    PRSCH13 = 13,
290    #[doc = "14: PRS Channel 14 selected as input"]
291    PRSCH14 = 14,
292    #[doc = "15: PRS Channel 15 selected as input"]
293    PRSCH15 = 15,
294}
295impl From<PRSSEL_A> for u8 {
296    #[inline(always)]
297    fn from(variant: PRSSEL_A) -> Self {
298        variant as _
299    }
300}
301#[doc = "Field `PRSSEL` reader - Compare/Capture Channel PRS Input Channel Selection"]
302pub type PRSSEL_R = crate::FieldReader<u8, PRSSEL_A>;
303impl PRSSEL_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> PRSSEL_A {
307        match self.bits {
308            0 => PRSSEL_A::PRSCH0,
309            1 => PRSSEL_A::PRSCH1,
310            2 => PRSSEL_A::PRSCH2,
311            3 => PRSSEL_A::PRSCH3,
312            4 => PRSSEL_A::PRSCH4,
313            5 => PRSSEL_A::PRSCH5,
314            6 => PRSSEL_A::PRSCH6,
315            7 => PRSSEL_A::PRSCH7,
316            8 => PRSSEL_A::PRSCH8,
317            9 => PRSSEL_A::PRSCH9,
318            10 => PRSSEL_A::PRSCH10,
319            11 => PRSSEL_A::PRSCH11,
320            12 => PRSSEL_A::PRSCH12,
321            13 => PRSSEL_A::PRSCH13,
322            14 => PRSSEL_A::PRSCH14,
323            15 => PRSSEL_A::PRSCH15,
324            _ => unreachable!(),
325        }
326    }
327    #[doc = "Checks if the value of the field is `PRSCH0`"]
328    #[inline(always)]
329    pub fn is_prsch0(&self) -> bool {
330        *self == PRSSEL_A::PRSCH0
331    }
332    #[doc = "Checks if the value of the field is `PRSCH1`"]
333    #[inline(always)]
334    pub fn is_prsch1(&self) -> bool {
335        *self == PRSSEL_A::PRSCH1
336    }
337    #[doc = "Checks if the value of the field is `PRSCH2`"]
338    #[inline(always)]
339    pub fn is_prsch2(&self) -> bool {
340        *self == PRSSEL_A::PRSCH2
341    }
342    #[doc = "Checks if the value of the field is `PRSCH3`"]
343    #[inline(always)]
344    pub fn is_prsch3(&self) -> bool {
345        *self == PRSSEL_A::PRSCH3
346    }
347    #[doc = "Checks if the value of the field is `PRSCH4`"]
348    #[inline(always)]
349    pub fn is_prsch4(&self) -> bool {
350        *self == PRSSEL_A::PRSCH4
351    }
352    #[doc = "Checks if the value of the field is `PRSCH5`"]
353    #[inline(always)]
354    pub fn is_prsch5(&self) -> bool {
355        *self == PRSSEL_A::PRSCH5
356    }
357    #[doc = "Checks if the value of the field is `PRSCH6`"]
358    #[inline(always)]
359    pub fn is_prsch6(&self) -> bool {
360        *self == PRSSEL_A::PRSCH6
361    }
362    #[doc = "Checks if the value of the field is `PRSCH7`"]
363    #[inline(always)]
364    pub fn is_prsch7(&self) -> bool {
365        *self == PRSSEL_A::PRSCH7
366    }
367    #[doc = "Checks if the value of the field is `PRSCH8`"]
368    #[inline(always)]
369    pub fn is_prsch8(&self) -> bool {
370        *self == PRSSEL_A::PRSCH8
371    }
372    #[doc = "Checks if the value of the field is `PRSCH9`"]
373    #[inline(always)]
374    pub fn is_prsch9(&self) -> bool {
375        *self == PRSSEL_A::PRSCH9
376    }
377    #[doc = "Checks if the value of the field is `PRSCH10`"]
378    #[inline(always)]
379    pub fn is_prsch10(&self) -> bool {
380        *self == PRSSEL_A::PRSCH10
381    }
382    #[doc = "Checks if the value of the field is `PRSCH11`"]
383    #[inline(always)]
384    pub fn is_prsch11(&self) -> bool {
385        *self == PRSSEL_A::PRSCH11
386    }
387    #[doc = "Checks if the value of the field is `PRSCH12`"]
388    #[inline(always)]
389    pub fn is_prsch12(&self) -> bool {
390        *self == PRSSEL_A::PRSCH12
391    }
392    #[doc = "Checks if the value of the field is `PRSCH13`"]
393    #[inline(always)]
394    pub fn is_prsch13(&self) -> bool {
395        *self == PRSSEL_A::PRSCH13
396    }
397    #[doc = "Checks if the value of the field is `PRSCH14`"]
398    #[inline(always)]
399    pub fn is_prsch14(&self) -> bool {
400        *self == PRSSEL_A::PRSCH14
401    }
402    #[doc = "Checks if the value of the field is `PRSCH15`"]
403    #[inline(always)]
404    pub fn is_prsch15(&self) -> bool {
405        *self == PRSSEL_A::PRSCH15
406    }
407}
408#[doc = "Field `PRSSEL` writer - Compare/Capture Channel PRS Input Channel Selection"]
409pub type PRSSEL_W<'a> = crate::FieldWriterSafe<'a, u32, CC0_CTRL_SPEC, u8, PRSSEL_A, 4, 6>;
410impl<'a> PRSSEL_W<'a> {
411    #[doc = "PRS Channel 0 selected as input"]
412    #[inline(always)]
413    pub fn prsch0(self) -> &'a mut W {
414        self.variant(PRSSEL_A::PRSCH0)
415    }
416    #[doc = "PRS Channel 1 selected as input"]
417    #[inline(always)]
418    pub fn prsch1(self) -> &'a mut W {
419        self.variant(PRSSEL_A::PRSCH1)
420    }
421    #[doc = "PRS Channel 2 selected as input"]
422    #[inline(always)]
423    pub fn prsch2(self) -> &'a mut W {
424        self.variant(PRSSEL_A::PRSCH2)
425    }
426    #[doc = "PRS Channel 3 selected as input"]
427    #[inline(always)]
428    pub fn prsch3(self) -> &'a mut W {
429        self.variant(PRSSEL_A::PRSCH3)
430    }
431    #[doc = "PRS Channel 4 selected as input"]
432    #[inline(always)]
433    pub fn prsch4(self) -> &'a mut W {
434        self.variant(PRSSEL_A::PRSCH4)
435    }
436    #[doc = "PRS Channel 5 selected as input"]
437    #[inline(always)]
438    pub fn prsch5(self) -> &'a mut W {
439        self.variant(PRSSEL_A::PRSCH5)
440    }
441    #[doc = "PRS Channel 6 selected as input"]
442    #[inline(always)]
443    pub fn prsch6(self) -> &'a mut W {
444        self.variant(PRSSEL_A::PRSCH6)
445    }
446    #[doc = "PRS Channel 7 selected as input"]
447    #[inline(always)]
448    pub fn prsch7(self) -> &'a mut W {
449        self.variant(PRSSEL_A::PRSCH7)
450    }
451    #[doc = "PRS Channel 8 selected as input"]
452    #[inline(always)]
453    pub fn prsch8(self) -> &'a mut W {
454        self.variant(PRSSEL_A::PRSCH8)
455    }
456    #[doc = "PRS Channel 9 selected as input"]
457    #[inline(always)]
458    pub fn prsch9(self) -> &'a mut W {
459        self.variant(PRSSEL_A::PRSCH9)
460    }
461    #[doc = "PRS Channel 10 selected as input"]
462    #[inline(always)]
463    pub fn prsch10(self) -> &'a mut W {
464        self.variant(PRSSEL_A::PRSCH10)
465    }
466    #[doc = "PRS Channel 11 selected as input"]
467    #[inline(always)]
468    pub fn prsch11(self) -> &'a mut W {
469        self.variant(PRSSEL_A::PRSCH11)
470    }
471    #[doc = "PRS Channel 12 selected as input"]
472    #[inline(always)]
473    pub fn prsch12(self) -> &'a mut W {
474        self.variant(PRSSEL_A::PRSCH12)
475    }
476    #[doc = "PRS Channel 13 selected as input"]
477    #[inline(always)]
478    pub fn prsch13(self) -> &'a mut W {
479        self.variant(PRSSEL_A::PRSCH13)
480    }
481    #[doc = "PRS Channel 14 selected as input"]
482    #[inline(always)]
483    pub fn prsch14(self) -> &'a mut W {
484        self.variant(PRSSEL_A::PRSCH14)
485    }
486    #[doc = "PRS Channel 15 selected as input"]
487    #[inline(always)]
488    pub fn prsch15(self) -> &'a mut W {
489        self.variant(PRSSEL_A::PRSCH15)
490    }
491}
492#[doc = "Field `COMPBASE` reader - Capture Compare Channel Comparison Base"]
493pub type COMPBASE_R = crate::BitReader<bool>;
494#[doc = "Field `COMPBASE` writer - Capture Compare Channel Comparison Base"]
495pub type COMPBASE_W<'a> = crate::BitWriter<'a, u32, CC0_CTRL_SPEC, bool, 11>;
496#[doc = "Field `COMPMASK` reader - Capture Compare Channel Comparison Mask"]
497pub type COMPMASK_R = crate::FieldReader<u8, u8>;
498#[doc = "Field `COMPMASK` writer - Capture Compare Channel Comparison Mask"]
499pub type COMPMASK_W<'a> = crate::FieldWriter<'a, u32, CC0_CTRL_SPEC, u8, u8, 5, 12>;
500#[doc = "Field `DAYCC` reader - Day Capture/Compare Selection"]
501pub type DAYCC_R = crate::BitReader<bool>;
502#[doc = "Field `DAYCC` writer - Day Capture/Compare Selection"]
503pub type DAYCC_W<'a> = crate::BitWriter<'a, u32, CC0_CTRL_SPEC, bool, 17>;
504impl R {
505    #[doc = "Bits 0:1 - CC Channel Mode"]
506    #[inline(always)]
507    pub fn mode(&self) -> MODE_R {
508        MODE_R::new((self.bits & 3) as u8)
509    }
510    #[doc = "Bits 2:3 - Compare Match Output Action"]
511    #[inline(always)]
512    pub fn cmoa(&self) -> CMOA_R {
513        CMOA_R::new(((self.bits >> 2) & 3) as u8)
514    }
515    #[doc = "Bits 4:5 - Input Capture Edge Select"]
516    #[inline(always)]
517    pub fn icedge(&self) -> ICEDGE_R {
518        ICEDGE_R::new(((self.bits >> 4) & 3) as u8)
519    }
520    #[doc = "Bits 6:9 - Compare/Capture Channel PRS Input Channel Selection"]
521    #[inline(always)]
522    pub fn prssel(&self) -> PRSSEL_R {
523        PRSSEL_R::new(((self.bits >> 6) & 0x0f) as u8)
524    }
525    #[doc = "Bit 11 - Capture Compare Channel Comparison Base"]
526    #[inline(always)]
527    pub fn compbase(&self) -> COMPBASE_R {
528        COMPBASE_R::new(((self.bits >> 11) & 1) != 0)
529    }
530    #[doc = "Bits 12:16 - Capture Compare Channel Comparison Mask"]
531    #[inline(always)]
532    pub fn compmask(&self) -> COMPMASK_R {
533        COMPMASK_R::new(((self.bits >> 12) & 0x1f) as u8)
534    }
535    #[doc = "Bit 17 - Day Capture/Compare Selection"]
536    #[inline(always)]
537    pub fn daycc(&self) -> DAYCC_R {
538        DAYCC_R::new(((self.bits >> 17) & 1) != 0)
539    }
540}
541impl W {
542    #[doc = "Bits 0:1 - CC Channel Mode"]
543    #[inline(always)]
544    pub fn mode(&mut self) -> MODE_W {
545        MODE_W::new(self)
546    }
547    #[doc = "Bits 2:3 - Compare Match Output Action"]
548    #[inline(always)]
549    pub fn cmoa(&mut self) -> CMOA_W {
550        CMOA_W::new(self)
551    }
552    #[doc = "Bits 4:5 - Input Capture Edge Select"]
553    #[inline(always)]
554    pub fn icedge(&mut self) -> ICEDGE_W {
555        ICEDGE_W::new(self)
556    }
557    #[doc = "Bits 6:9 - Compare/Capture Channel PRS Input Channel Selection"]
558    #[inline(always)]
559    pub fn prssel(&mut self) -> PRSSEL_W {
560        PRSSEL_W::new(self)
561    }
562    #[doc = "Bit 11 - Capture Compare Channel Comparison Base"]
563    #[inline(always)]
564    pub fn compbase(&mut self) -> COMPBASE_W {
565        COMPBASE_W::new(self)
566    }
567    #[doc = "Bits 12:16 - Capture Compare Channel Comparison Mask"]
568    #[inline(always)]
569    pub fn compmask(&mut self) -> COMPMASK_W {
570        COMPMASK_W::new(self)
571    }
572    #[doc = "Bit 17 - Day Capture/Compare Selection"]
573    #[inline(always)]
574    pub fn daycc(&mut self) -> DAYCC_W {
575        DAYCC_W::new(self)
576    }
577    #[doc = "Writes raw bits to the register."]
578    #[inline(always)]
579    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
580        self.0.bits(bits);
581        self
582    }
583}
584#[doc = "CC Channel Control 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 [cc0_ctrl](index.html) module"]
585pub struct CC0_CTRL_SPEC;
586impl crate::RegisterSpec for CC0_CTRL_SPEC {
587    type Ux = u32;
588}
589#[doc = "`read()` method returns [cc0_ctrl::R](R) reader structure"]
590impl crate::Readable for CC0_CTRL_SPEC {
591    type Reader = R;
592}
593#[doc = "`write(|w| ..)` method takes [cc0_ctrl::W](W) writer structure"]
594impl crate::Writable for CC0_CTRL_SPEC {
595    type Writer = W;
596}
597#[doc = "`reset()` method sets CC0_CTRL to value 0"]
598impl crate::Resettable for CC0_CTRL_SPEC {
599    #[inline(always)]
600    fn reset_value() -> Self::Ux {
601        0
602    }
603}