atsamd51n/adc0/
dseqctrl.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#[doc = "Register `DSEQCTRL` reader"]
pub type R = crate::R<DseqctrlSpec>;
#[doc = "Register `DSEQCTRL` writer"]
pub type W = crate::W<DseqctrlSpec>;
#[doc = "Field `INPUTCTRL` reader - Input Control"]
pub type InputctrlR = crate::BitReader;
#[doc = "Field `INPUTCTRL` writer - Input Control"]
pub type InputctrlW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CTRLB` reader - Control B"]
pub type CtrlbR = crate::BitReader;
#[doc = "Field `CTRLB` writer - Control B"]
pub type CtrlbW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `REFCTRL` reader - Reference Control"]
pub type RefctrlR = crate::BitReader;
#[doc = "Field `REFCTRL` writer - Reference Control"]
pub type RefctrlW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `AVGCTRL` reader - Average Control"]
pub type AvgctrlR = crate::BitReader;
#[doc = "Field `AVGCTRL` writer - Average Control"]
pub type AvgctrlW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `SAMPCTRL` reader - Sampling Time Control"]
pub type SampctrlR = crate::BitReader;
#[doc = "Field `SAMPCTRL` writer - Sampling Time Control"]
pub type SampctrlW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `WINLT` reader - Window Monitor Lower Threshold"]
pub type WinltR = crate::BitReader;
#[doc = "Field `WINLT` writer - Window Monitor Lower Threshold"]
pub type WinltW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `WINUT` reader - Window Monitor Upper Threshold"]
pub type WinutR = crate::BitReader;
#[doc = "Field `WINUT` writer - Window Monitor Upper Threshold"]
pub type WinutW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `GAINCORR` reader - Gain Correction"]
pub type GaincorrR = crate::BitReader;
#[doc = "Field `GAINCORR` writer - Gain Correction"]
pub type GaincorrW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `OFFSETCORR` reader - Offset Correction"]
pub type OffsetcorrR = crate::BitReader;
#[doc = "Field `OFFSETCORR` writer - Offset Correction"]
pub type OffsetcorrW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `AUTOSTART` reader - ADC Auto-Start Conversion"]
pub type AutostartR = crate::BitReader;
#[doc = "Field `AUTOSTART` writer - ADC Auto-Start Conversion"]
pub type AutostartW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bit 0 - Input Control"]
    #[inline(always)]
    pub fn inputctrl(&self) -> InputctrlR {
        InputctrlR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Control B"]
    #[inline(always)]
    pub fn ctrlb(&self) -> CtrlbR {
        CtrlbR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Reference Control"]
    #[inline(always)]
    pub fn refctrl(&self) -> RefctrlR {
        RefctrlR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Average Control"]
    #[inline(always)]
    pub fn avgctrl(&self) -> AvgctrlR {
        AvgctrlR::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Sampling Time Control"]
    #[inline(always)]
    pub fn sampctrl(&self) -> SampctrlR {
        SampctrlR::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Window Monitor Lower Threshold"]
    #[inline(always)]
    pub fn winlt(&self) -> WinltR {
        WinltR::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Window Monitor Upper Threshold"]
    #[inline(always)]
    pub fn winut(&self) -> WinutR {
        WinutR::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Gain Correction"]
    #[inline(always)]
    pub fn gaincorr(&self) -> GaincorrR {
        GaincorrR::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Offset Correction"]
    #[inline(always)]
    pub fn offsetcorr(&self) -> OffsetcorrR {
        OffsetcorrR::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 31 - ADC Auto-Start Conversion"]
    #[inline(always)]
    pub fn autostart(&self) -> AutostartR {
        AutostartR::new(((self.bits >> 31) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Input Control"]
    #[inline(always)]
    #[must_use]
    pub fn inputctrl(&mut self) -> InputctrlW<DseqctrlSpec> {
        InputctrlW::new(self, 0)
    }
    #[doc = "Bit 1 - Control B"]
    #[inline(always)]
    #[must_use]
    pub fn ctrlb(&mut self) -> CtrlbW<DseqctrlSpec> {
        CtrlbW::new(self, 1)
    }
    #[doc = "Bit 2 - Reference Control"]
    #[inline(always)]
    #[must_use]
    pub fn refctrl(&mut self) -> RefctrlW<DseqctrlSpec> {
        RefctrlW::new(self, 2)
    }
    #[doc = "Bit 3 - Average Control"]
    #[inline(always)]
    #[must_use]
    pub fn avgctrl(&mut self) -> AvgctrlW<DseqctrlSpec> {
        AvgctrlW::new(self, 3)
    }
    #[doc = "Bit 4 - Sampling Time Control"]
    #[inline(always)]
    #[must_use]
    pub fn sampctrl(&mut self) -> SampctrlW<DseqctrlSpec> {
        SampctrlW::new(self, 4)
    }
    #[doc = "Bit 5 - Window Monitor Lower Threshold"]
    #[inline(always)]
    #[must_use]
    pub fn winlt(&mut self) -> WinltW<DseqctrlSpec> {
        WinltW::new(self, 5)
    }
    #[doc = "Bit 6 - Window Monitor Upper Threshold"]
    #[inline(always)]
    #[must_use]
    pub fn winut(&mut self) -> WinutW<DseqctrlSpec> {
        WinutW::new(self, 6)
    }
    #[doc = "Bit 7 - Gain Correction"]
    #[inline(always)]
    #[must_use]
    pub fn gaincorr(&mut self) -> GaincorrW<DseqctrlSpec> {
        GaincorrW::new(self, 7)
    }
    #[doc = "Bit 8 - Offset Correction"]
    #[inline(always)]
    #[must_use]
    pub fn offsetcorr(&mut self) -> OffsetcorrW<DseqctrlSpec> {
        OffsetcorrW::new(self, 8)
    }
    #[doc = "Bit 31 - ADC Auto-Start Conversion"]
    #[inline(always)]
    #[must_use]
    pub fn autostart(&mut self) -> AutostartW<DseqctrlSpec> {
        AutostartW::new(self, 31)
    }
}
#[doc = "DMA Sequential Control\n\nYou can [`read`](crate::Reg::read) this register and get [`dseqctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dseqctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DseqctrlSpec;
impl crate::RegisterSpec for DseqctrlSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dseqctrl::R`](R) reader structure"]
impl crate::Readable for DseqctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`dseqctrl::W`](W) writer structure"]
impl crate::Writable for DseqctrlSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets DSEQCTRL to value 0"]
impl crate::Resettable for DseqctrlSpec {
    const RESET_VALUE: u32 = 0;
}