ra4m3/adc120/
adansa0.rs

1#[doc = "Register `ADANSA0` reader"]
2pub struct R(crate::R<ADANSA0_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<ADANSA0_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<ADANSA0_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<ADANSA0_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `ADANSA0` writer"]
17pub struct W(crate::W<ADANSA0_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<ADANSA0_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<ADANSA0_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<ADANSA0_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `ANSA00` reader - A/D Conversion Channels Select"]
38pub type ANSA00_R = crate::BitReader<ANSA00_A>;
39#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum ANSA00_A {
42    #[doc = "0: Do not select associated input channel."]
43    _0 = 0,
44    #[doc = "1: Select associated input channel."]
45    _1 = 1,
46}
47impl From<ANSA00_A> for bool {
48    #[inline(always)]
49    fn from(variant: ANSA00_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl ANSA00_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> ANSA00_A {
57        match self.bits {
58            false => ANSA00_A::_0,
59            true => ANSA00_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 == ANSA00_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 == ANSA00_A::_1
71    }
72}
73#[doc = "Field `ANSA00` writer - A/D Conversion Channels Select"]
74pub type ANSA00_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA00_A, O>;
75impl<'a, const O: u8> ANSA00_W<'a, O> {
76    #[doc = "Do not select associated input channel."]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(ANSA00_A::_0)
80    }
81    #[doc = "Select associated input channel."]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(ANSA00_A::_1)
85    }
86}
87#[doc = "Field `ANSA01` reader - A/D Conversion Channels Select"]
88pub type ANSA01_R = crate::BitReader<ANSA01_A>;
89#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum ANSA01_A {
92    #[doc = "0: Do not select associated input channel."]
93    _0 = 0,
94    #[doc = "1: Select associated input channel."]
95    _1 = 1,
96}
97impl From<ANSA01_A> for bool {
98    #[inline(always)]
99    fn from(variant: ANSA01_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl ANSA01_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> ANSA01_A {
107        match self.bits {
108            false => ANSA01_A::_0,
109            true => ANSA01_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 == ANSA01_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 == ANSA01_A::_1
121    }
122}
123#[doc = "Field `ANSA01` writer - A/D Conversion Channels Select"]
124pub type ANSA01_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA01_A, O>;
125impl<'a, const O: u8> ANSA01_W<'a, O> {
126    #[doc = "Do not select associated input channel."]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(ANSA01_A::_0)
130    }
131    #[doc = "Select associated input channel."]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(ANSA01_A::_1)
135    }
136}
137#[doc = "Field `ANSA02` reader - A/D Conversion Channels Select"]
138pub type ANSA02_R = crate::BitReader<ANSA02_A>;
139#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum ANSA02_A {
142    #[doc = "0: Do not select associated input channel."]
143    _0 = 0,
144    #[doc = "1: Select associated input channel."]
145    _1 = 1,
146}
147impl From<ANSA02_A> for bool {
148    #[inline(always)]
149    fn from(variant: ANSA02_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl ANSA02_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> ANSA02_A {
157        match self.bits {
158            false => ANSA02_A::_0,
159            true => ANSA02_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 == ANSA02_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 == ANSA02_A::_1
171    }
172}
173#[doc = "Field `ANSA02` writer - A/D Conversion Channels Select"]
174pub type ANSA02_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA02_A, O>;
175impl<'a, const O: u8> ANSA02_W<'a, O> {
176    #[doc = "Do not select associated input channel."]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(ANSA02_A::_0)
180    }
181    #[doc = "Select associated input channel."]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(ANSA02_A::_1)
185    }
186}
187#[doc = "Field `ANSA03` reader - A/D Conversion Channels Select"]
188pub type ANSA03_R = crate::BitReader<ANSA03_A>;
189#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum ANSA03_A {
192    #[doc = "0: Do not select associated input channel."]
193    _0 = 0,
194    #[doc = "1: Select associated input channel."]
195    _1 = 1,
196}
197impl From<ANSA03_A> for bool {
198    #[inline(always)]
199    fn from(variant: ANSA03_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl ANSA03_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> ANSA03_A {
207        match self.bits {
208            false => ANSA03_A::_0,
209            true => ANSA03_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 == ANSA03_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 == ANSA03_A::_1
221    }
222}
223#[doc = "Field `ANSA03` writer - A/D Conversion Channels Select"]
224pub type ANSA03_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA03_A, O>;
225impl<'a, const O: u8> ANSA03_W<'a, O> {
226    #[doc = "Do not select associated input channel."]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(ANSA03_A::_0)
230    }
231    #[doc = "Select associated input channel."]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(ANSA03_A::_1)
235    }
236}
237#[doc = "Field `ANSA04` reader - A/D Conversion Channels Select"]
238pub type ANSA04_R = crate::BitReader<ANSA04_A>;
239#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum ANSA04_A {
242    #[doc = "0: Do not select associated input channel."]
243    _0 = 0,
244    #[doc = "1: Select associated input channel."]
245    _1 = 1,
246}
247impl From<ANSA04_A> for bool {
248    #[inline(always)]
249    fn from(variant: ANSA04_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl ANSA04_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> ANSA04_A {
257        match self.bits {
258            false => ANSA04_A::_0,
259            true => ANSA04_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 == ANSA04_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 == ANSA04_A::_1
271    }
272}
273#[doc = "Field `ANSA04` writer - A/D Conversion Channels Select"]
274pub type ANSA04_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA04_A, O>;
275impl<'a, const O: u8> ANSA04_W<'a, O> {
276    #[doc = "Do not select associated input channel."]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(ANSA04_A::_0)
280    }
281    #[doc = "Select associated input channel."]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(ANSA04_A::_1)
285    }
286}
287#[doc = "Field `ANSA05` reader - A/D Conversion Channels Select"]
288pub type ANSA05_R = crate::BitReader<ANSA05_A>;
289#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum ANSA05_A {
292    #[doc = "0: Do not select associated input channel."]
293    _0 = 0,
294    #[doc = "1: Select associated input channel."]
295    _1 = 1,
296}
297impl From<ANSA05_A> for bool {
298    #[inline(always)]
299    fn from(variant: ANSA05_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl ANSA05_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> ANSA05_A {
307        match self.bits {
308            false => ANSA05_A::_0,
309            true => ANSA05_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 == ANSA05_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 == ANSA05_A::_1
321    }
322}
323#[doc = "Field `ANSA05` writer - A/D Conversion Channels Select"]
324pub type ANSA05_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA05_A, O>;
325impl<'a, const O: u8> ANSA05_W<'a, O> {
326    #[doc = "Do not select associated input channel."]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(ANSA05_A::_0)
330    }
331    #[doc = "Select associated input channel."]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(ANSA05_A::_1)
335    }
336}
337#[doc = "Field `ANSA06` reader - A/D Conversion Channels Select"]
338pub type ANSA06_R = crate::BitReader<ANSA06_A>;
339#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum ANSA06_A {
342    #[doc = "0: Do not select associated input channel."]
343    _0 = 0,
344    #[doc = "1: Select associated input channel."]
345    _1 = 1,
346}
347impl From<ANSA06_A> for bool {
348    #[inline(always)]
349    fn from(variant: ANSA06_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl ANSA06_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> ANSA06_A {
357        match self.bits {
358            false => ANSA06_A::_0,
359            true => ANSA06_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 == ANSA06_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 == ANSA06_A::_1
371    }
372}
373#[doc = "Field `ANSA06` writer - A/D Conversion Channels Select"]
374pub type ANSA06_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA06_A, O>;
375impl<'a, const O: u8> ANSA06_W<'a, O> {
376    #[doc = "Do not select associated input channel."]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(ANSA06_A::_0)
380    }
381    #[doc = "Select associated input channel."]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(ANSA06_A::_1)
385    }
386}
387#[doc = "Field `ANSA07` reader - A/D Conversion Channels Select"]
388pub type ANSA07_R = crate::BitReader<ANSA07_A>;
389#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum ANSA07_A {
392    #[doc = "0: Do not select associated input channel."]
393    _0 = 0,
394    #[doc = "1: Select associated input channel."]
395    _1 = 1,
396}
397impl From<ANSA07_A> for bool {
398    #[inline(always)]
399    fn from(variant: ANSA07_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl ANSA07_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> ANSA07_A {
407        match self.bits {
408            false => ANSA07_A::_0,
409            true => ANSA07_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 == ANSA07_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 == ANSA07_A::_1
421    }
422}
423#[doc = "Field `ANSA07` writer - A/D Conversion Channels Select"]
424pub type ANSA07_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA07_A, O>;
425impl<'a, const O: u8> ANSA07_W<'a, O> {
426    #[doc = "Do not select associated input channel."]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(ANSA07_A::_0)
430    }
431    #[doc = "Select associated input channel."]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(ANSA07_A::_1)
435    }
436}
437#[doc = "Field `ANSA08` reader - A/D Conversion Channels Select"]
438pub type ANSA08_R = crate::BitReader<ANSA08_A>;
439#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum ANSA08_A {
442    #[doc = "0: Do not select associated input channel."]
443    _0 = 0,
444    #[doc = "1: Select associated input channel."]
445    _1 = 1,
446}
447impl From<ANSA08_A> for bool {
448    #[inline(always)]
449    fn from(variant: ANSA08_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl ANSA08_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> ANSA08_A {
457        match self.bits {
458            false => ANSA08_A::_0,
459            true => ANSA08_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 == ANSA08_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 == ANSA08_A::_1
471    }
472}
473#[doc = "Field `ANSA08` writer - A/D Conversion Channels Select"]
474pub type ANSA08_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA08_A, O>;
475impl<'a, const O: u8> ANSA08_W<'a, O> {
476    #[doc = "Do not select associated input channel."]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(ANSA08_A::_0)
480    }
481    #[doc = "Select associated input channel."]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(ANSA08_A::_1)
485    }
486}
487#[doc = "Field `ANSA09` reader - A/D Conversion Channels Select"]
488pub type ANSA09_R = crate::BitReader<ANSA09_A>;
489#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum ANSA09_A {
492    #[doc = "0: Do not select associated input channel."]
493    _0 = 0,
494    #[doc = "1: Select associated input channel."]
495    _1 = 1,
496}
497impl From<ANSA09_A> for bool {
498    #[inline(always)]
499    fn from(variant: ANSA09_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl ANSA09_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> ANSA09_A {
507        match self.bits {
508            false => ANSA09_A::_0,
509            true => ANSA09_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 == ANSA09_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 == ANSA09_A::_1
521    }
522}
523#[doc = "Field `ANSA09` writer - A/D Conversion Channels Select"]
524pub type ANSA09_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA09_A, O>;
525impl<'a, const O: u8> ANSA09_W<'a, O> {
526    #[doc = "Do not select associated input channel."]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(ANSA09_A::_0)
530    }
531    #[doc = "Select associated input channel."]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(ANSA09_A::_1)
535    }
536}
537#[doc = "Field `ANSA10` reader - A/D Conversion Channels Select"]
538pub type ANSA10_R = crate::BitReader<ANSA10_A>;
539#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum ANSA10_A {
542    #[doc = "0: Do not select associated input channel."]
543    _0 = 0,
544    #[doc = "1: Select associated input channel."]
545    _1 = 1,
546}
547impl From<ANSA10_A> for bool {
548    #[inline(always)]
549    fn from(variant: ANSA10_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl ANSA10_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> ANSA10_A {
557        match self.bits {
558            false => ANSA10_A::_0,
559            true => ANSA10_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 == ANSA10_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 == ANSA10_A::_1
571    }
572}
573#[doc = "Field `ANSA10` writer - A/D Conversion Channels Select"]
574pub type ANSA10_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA10_A, O>;
575impl<'a, const O: u8> ANSA10_W<'a, O> {
576    #[doc = "Do not select associated input channel."]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(ANSA10_A::_0)
580    }
581    #[doc = "Select associated input channel."]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(ANSA10_A::_1)
585    }
586}
587#[doc = "Field `ANSA11` reader - A/D Conversion Channels Select"]
588pub type ANSA11_R = crate::BitReader<ANSA11_A>;
589#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum ANSA11_A {
592    #[doc = "0: Do not select associated input channel."]
593    _0 = 0,
594    #[doc = "1: Select associated input channel."]
595    _1 = 1,
596}
597impl From<ANSA11_A> for bool {
598    #[inline(always)]
599    fn from(variant: ANSA11_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl ANSA11_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> ANSA11_A {
607        match self.bits {
608            false => ANSA11_A::_0,
609            true => ANSA11_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 == ANSA11_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 == ANSA11_A::_1
621    }
622}
623#[doc = "Field `ANSA11` writer - A/D Conversion Channels Select"]
624pub type ANSA11_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA11_A, O>;
625impl<'a, const O: u8> ANSA11_W<'a, O> {
626    #[doc = "Do not select associated input channel."]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(ANSA11_A::_0)
630    }
631    #[doc = "Select associated input channel."]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(ANSA11_A::_1)
635    }
636}
637#[doc = "Field `ANSA12` reader - A/D Conversion Channels Select"]
638pub type ANSA12_R = crate::BitReader<ANSA12_A>;
639#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum ANSA12_A {
642    #[doc = "0: Do not select associated input channel."]
643    _0 = 0,
644    #[doc = "1: Select associated input channel."]
645    _1 = 1,
646}
647impl From<ANSA12_A> for bool {
648    #[inline(always)]
649    fn from(variant: ANSA12_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl ANSA12_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> ANSA12_A {
657        match self.bits {
658            false => ANSA12_A::_0,
659            true => ANSA12_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 == ANSA12_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 == ANSA12_A::_1
671    }
672}
673#[doc = "Field `ANSA12` writer - A/D Conversion Channels Select"]
674pub type ANSA12_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA12_A, O>;
675impl<'a, const O: u8> ANSA12_W<'a, O> {
676    #[doc = "Do not select associated input channel."]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(ANSA12_A::_0)
680    }
681    #[doc = "Select associated input channel."]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(ANSA12_A::_1)
685    }
686}
687#[doc = "Field `ANSA13` reader - A/D Conversion Channels Select"]
688pub type ANSA13_R = crate::BitReader<ANSA13_A>;
689#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum ANSA13_A {
692    #[doc = "0: Do not select associated input channel."]
693    _0 = 0,
694    #[doc = "1: Select associated input channel."]
695    _1 = 1,
696}
697impl From<ANSA13_A> for bool {
698    #[inline(always)]
699    fn from(variant: ANSA13_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl ANSA13_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> ANSA13_A {
707        match self.bits {
708            false => ANSA13_A::_0,
709            true => ANSA13_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 == ANSA13_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 == ANSA13_A::_1
721    }
722}
723#[doc = "Field `ANSA13` writer - A/D Conversion Channels Select"]
724pub type ANSA13_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA13_A, O>;
725impl<'a, const O: u8> ANSA13_W<'a, O> {
726    #[doc = "Do not select associated input channel."]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(ANSA13_A::_0)
730    }
731    #[doc = "Select associated input channel."]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(ANSA13_A::_1)
735    }
736}
737#[doc = "Field `ANSA14` reader - A/D Conversion Channels Select"]
738pub type ANSA14_R = crate::BitReader<ANSA14_A>;
739#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum ANSA14_A {
742    #[doc = "0: Do not select associated input channel."]
743    _0 = 0,
744    #[doc = "1: Select associated input channel."]
745    _1 = 1,
746}
747impl From<ANSA14_A> for bool {
748    #[inline(always)]
749    fn from(variant: ANSA14_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl ANSA14_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> ANSA14_A {
757        match self.bits {
758            false => ANSA14_A::_0,
759            true => ANSA14_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 == ANSA14_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 == ANSA14_A::_1
771    }
772}
773#[doc = "Field `ANSA14` writer - A/D Conversion Channels Select"]
774pub type ANSA14_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA14_A, O>;
775impl<'a, const O: u8> ANSA14_W<'a, O> {
776    #[doc = "Do not select associated input channel."]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(ANSA14_A::_0)
780    }
781    #[doc = "Select associated input channel."]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(ANSA14_A::_1)
785    }
786}
787#[doc = "Field `ANSA15` reader - A/D Conversion Channels Select"]
788pub type ANSA15_R = crate::BitReader<ANSA15_A>;
789#[doc = "A/D Conversion Channels Select\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum ANSA15_A {
792    #[doc = "0: Do not select associated input channel."]
793    _0 = 0,
794    #[doc = "1: Select associated input channel."]
795    _1 = 1,
796}
797impl From<ANSA15_A> for bool {
798    #[inline(always)]
799    fn from(variant: ANSA15_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl ANSA15_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> ANSA15_A {
807        match self.bits {
808            false => ANSA15_A::_0,
809            true => ANSA15_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 == ANSA15_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 == ANSA15_A::_1
821    }
822}
823#[doc = "Field `ANSA15` writer - A/D Conversion Channels Select"]
824pub type ANSA15_W<'a, const O: u8> = crate::BitWriter<'a, u16, ADANSA0_SPEC, ANSA15_A, O>;
825impl<'a, const O: u8> ANSA15_W<'a, O> {
826    #[doc = "Do not select associated input channel."]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(ANSA15_A::_0)
830    }
831    #[doc = "Select associated input channel."]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(ANSA15_A::_1)
835    }
836}
837impl R {
838    #[doc = "Bit 0 - A/D Conversion Channels Select"]
839    #[inline(always)]
840    pub fn ansa00(&self) -> ANSA00_R {
841        ANSA00_R::new((self.bits & 1) != 0)
842    }
843    #[doc = "Bit 1 - A/D Conversion Channels Select"]
844    #[inline(always)]
845    pub fn ansa01(&self) -> ANSA01_R {
846        ANSA01_R::new(((self.bits >> 1) & 1) != 0)
847    }
848    #[doc = "Bit 2 - A/D Conversion Channels Select"]
849    #[inline(always)]
850    pub fn ansa02(&self) -> ANSA02_R {
851        ANSA02_R::new(((self.bits >> 2) & 1) != 0)
852    }
853    #[doc = "Bit 3 - A/D Conversion Channels Select"]
854    #[inline(always)]
855    pub fn ansa03(&self) -> ANSA03_R {
856        ANSA03_R::new(((self.bits >> 3) & 1) != 0)
857    }
858    #[doc = "Bit 4 - A/D Conversion Channels Select"]
859    #[inline(always)]
860    pub fn ansa04(&self) -> ANSA04_R {
861        ANSA04_R::new(((self.bits >> 4) & 1) != 0)
862    }
863    #[doc = "Bit 5 - A/D Conversion Channels Select"]
864    #[inline(always)]
865    pub fn ansa05(&self) -> ANSA05_R {
866        ANSA05_R::new(((self.bits >> 5) & 1) != 0)
867    }
868    #[doc = "Bit 6 - A/D Conversion Channels Select"]
869    #[inline(always)]
870    pub fn ansa06(&self) -> ANSA06_R {
871        ANSA06_R::new(((self.bits >> 6) & 1) != 0)
872    }
873    #[doc = "Bit 7 - A/D Conversion Channels Select"]
874    #[inline(always)]
875    pub fn ansa07(&self) -> ANSA07_R {
876        ANSA07_R::new(((self.bits >> 7) & 1) != 0)
877    }
878    #[doc = "Bit 8 - A/D Conversion Channels Select"]
879    #[inline(always)]
880    pub fn ansa08(&self) -> ANSA08_R {
881        ANSA08_R::new(((self.bits >> 8) & 1) != 0)
882    }
883    #[doc = "Bit 9 - A/D Conversion Channels Select"]
884    #[inline(always)]
885    pub fn ansa09(&self) -> ANSA09_R {
886        ANSA09_R::new(((self.bits >> 9) & 1) != 0)
887    }
888    #[doc = "Bit 10 - A/D Conversion Channels Select"]
889    #[inline(always)]
890    pub fn ansa10(&self) -> ANSA10_R {
891        ANSA10_R::new(((self.bits >> 10) & 1) != 0)
892    }
893    #[doc = "Bit 11 - A/D Conversion Channels Select"]
894    #[inline(always)]
895    pub fn ansa11(&self) -> ANSA11_R {
896        ANSA11_R::new(((self.bits >> 11) & 1) != 0)
897    }
898    #[doc = "Bit 12 - A/D Conversion Channels Select"]
899    #[inline(always)]
900    pub fn ansa12(&self) -> ANSA12_R {
901        ANSA12_R::new(((self.bits >> 12) & 1) != 0)
902    }
903    #[doc = "Bit 13 - A/D Conversion Channels Select"]
904    #[inline(always)]
905    pub fn ansa13(&self) -> ANSA13_R {
906        ANSA13_R::new(((self.bits >> 13) & 1) != 0)
907    }
908    #[doc = "Bit 14 - A/D Conversion Channels Select"]
909    #[inline(always)]
910    pub fn ansa14(&self) -> ANSA14_R {
911        ANSA14_R::new(((self.bits >> 14) & 1) != 0)
912    }
913    #[doc = "Bit 15 - A/D Conversion Channels Select"]
914    #[inline(always)]
915    pub fn ansa15(&self) -> ANSA15_R {
916        ANSA15_R::new(((self.bits >> 15) & 1) != 0)
917    }
918}
919impl W {
920    #[doc = "Bit 0 - A/D Conversion Channels Select"]
921    #[inline(always)]
922    #[must_use]
923    pub fn ansa00(&mut self) -> ANSA00_W<0> {
924        ANSA00_W::new(self)
925    }
926    #[doc = "Bit 1 - A/D Conversion Channels Select"]
927    #[inline(always)]
928    #[must_use]
929    pub fn ansa01(&mut self) -> ANSA01_W<1> {
930        ANSA01_W::new(self)
931    }
932    #[doc = "Bit 2 - A/D Conversion Channels Select"]
933    #[inline(always)]
934    #[must_use]
935    pub fn ansa02(&mut self) -> ANSA02_W<2> {
936        ANSA02_W::new(self)
937    }
938    #[doc = "Bit 3 - A/D Conversion Channels Select"]
939    #[inline(always)]
940    #[must_use]
941    pub fn ansa03(&mut self) -> ANSA03_W<3> {
942        ANSA03_W::new(self)
943    }
944    #[doc = "Bit 4 - A/D Conversion Channels Select"]
945    #[inline(always)]
946    #[must_use]
947    pub fn ansa04(&mut self) -> ANSA04_W<4> {
948        ANSA04_W::new(self)
949    }
950    #[doc = "Bit 5 - A/D Conversion Channels Select"]
951    #[inline(always)]
952    #[must_use]
953    pub fn ansa05(&mut self) -> ANSA05_W<5> {
954        ANSA05_W::new(self)
955    }
956    #[doc = "Bit 6 - A/D Conversion Channels Select"]
957    #[inline(always)]
958    #[must_use]
959    pub fn ansa06(&mut self) -> ANSA06_W<6> {
960        ANSA06_W::new(self)
961    }
962    #[doc = "Bit 7 - A/D Conversion Channels Select"]
963    #[inline(always)]
964    #[must_use]
965    pub fn ansa07(&mut self) -> ANSA07_W<7> {
966        ANSA07_W::new(self)
967    }
968    #[doc = "Bit 8 - A/D Conversion Channels Select"]
969    #[inline(always)]
970    #[must_use]
971    pub fn ansa08(&mut self) -> ANSA08_W<8> {
972        ANSA08_W::new(self)
973    }
974    #[doc = "Bit 9 - A/D Conversion Channels Select"]
975    #[inline(always)]
976    #[must_use]
977    pub fn ansa09(&mut self) -> ANSA09_W<9> {
978        ANSA09_W::new(self)
979    }
980    #[doc = "Bit 10 - A/D Conversion Channels Select"]
981    #[inline(always)]
982    #[must_use]
983    pub fn ansa10(&mut self) -> ANSA10_W<10> {
984        ANSA10_W::new(self)
985    }
986    #[doc = "Bit 11 - A/D Conversion Channels Select"]
987    #[inline(always)]
988    #[must_use]
989    pub fn ansa11(&mut self) -> ANSA11_W<11> {
990        ANSA11_W::new(self)
991    }
992    #[doc = "Bit 12 - A/D Conversion Channels Select"]
993    #[inline(always)]
994    #[must_use]
995    pub fn ansa12(&mut self) -> ANSA12_W<12> {
996        ANSA12_W::new(self)
997    }
998    #[doc = "Bit 13 - A/D Conversion Channels Select"]
999    #[inline(always)]
1000    #[must_use]
1001    pub fn ansa13(&mut self) -> ANSA13_W<13> {
1002        ANSA13_W::new(self)
1003    }
1004    #[doc = "Bit 14 - A/D Conversion Channels Select"]
1005    #[inline(always)]
1006    #[must_use]
1007    pub fn ansa14(&mut self) -> ANSA14_W<14> {
1008        ANSA14_W::new(self)
1009    }
1010    #[doc = "Bit 15 - A/D Conversion Channels Select"]
1011    #[inline(always)]
1012    #[must_use]
1013    pub fn ansa15(&mut self) -> ANSA15_W<15> {
1014        ANSA15_W::new(self)
1015    }
1016    #[doc = "Writes raw bits to the register."]
1017    #[inline(always)]
1018    pub unsafe fn bits(&mut self, bits: u16) -> &mut Self {
1019        self.0.bits(bits);
1020        self
1021    }
1022}
1023#[doc = "A/D Channel Select Register A0\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 [adansa0](index.html) module"]
1024pub struct ADANSA0_SPEC;
1025impl crate::RegisterSpec for ADANSA0_SPEC {
1026    type Ux = u16;
1027}
1028#[doc = "`read()` method returns [adansa0::R](R) reader structure"]
1029impl crate::Readable for ADANSA0_SPEC {
1030    type Reader = R;
1031}
1032#[doc = "`write(|w| ..)` method takes [adansa0::W](W) writer structure"]
1033impl crate::Writable for ADANSA0_SPEC {
1034    type Writer = W;
1035    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1036    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1037}
1038#[doc = "`reset()` method sets ADANSA0 to value 0"]
1039impl crate::Resettable for ADANSA0_SPEC {
1040    const RESET_VALUE: Self::Ux = 0;
1041}