atsame70n20/pwm0/
pwm_elmr.rs1#[doc = "Register `PWM_ELMR[%s]` reader"]
2pub struct R(crate::R<PWM_ELMR_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<PWM_ELMR_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<PWM_ELMR_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<PWM_ELMR_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `PWM_ELMR[%s]` writer"]
17pub struct W(crate::W<PWM_ELMR_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<PWM_ELMR_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<PWM_ELMR_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<PWM_ELMR_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `CSEL0` reader - Comparison 0 Selection"]
38pub struct CSEL0_R(crate::FieldReader<bool, bool>);
39impl CSEL0_R {
40 #[inline(always)]
41 pub(crate) fn new(bits: bool) -> Self {
42 CSEL0_R(crate::FieldReader::new(bits))
43 }
44}
45impl core::ops::Deref for CSEL0_R {
46 type Target = crate::FieldReader<bool, bool>;
47 #[inline(always)]
48 fn deref(&self) -> &Self::Target {
49 &self.0
50 }
51}
52#[doc = "Field `CSEL0` writer - Comparison 0 Selection"]
53pub struct CSEL0_W<'a> {
54 w: &'a mut W,
55}
56impl<'a> CSEL0_W<'a> {
57 #[doc = r"Sets the field bit"]
58 #[inline(always)]
59 pub fn set_bit(self) -> &'a mut W {
60 self.bit(true)
61 }
62 #[doc = r"Clears the field bit"]
63 #[inline(always)]
64 pub fn clear_bit(self) -> &'a mut W {
65 self.bit(false)
66 }
67 #[doc = r"Writes raw bits to the field"]
68 #[inline(always)]
69 pub fn bit(self, value: bool) -> &'a mut W {
70 self.w.bits = (self.w.bits & !0x01) | (value as u32 & 0x01);
71 self.w
72 }
73}
74#[doc = "Field `CSEL1` reader - Comparison 1 Selection"]
75pub struct CSEL1_R(crate::FieldReader<bool, bool>);
76impl CSEL1_R {
77 #[inline(always)]
78 pub(crate) fn new(bits: bool) -> Self {
79 CSEL1_R(crate::FieldReader::new(bits))
80 }
81}
82impl core::ops::Deref for CSEL1_R {
83 type Target = crate::FieldReader<bool, bool>;
84 #[inline(always)]
85 fn deref(&self) -> &Self::Target {
86 &self.0
87 }
88}
89#[doc = "Field `CSEL1` writer - Comparison 1 Selection"]
90pub struct CSEL1_W<'a> {
91 w: &'a mut W,
92}
93impl<'a> CSEL1_W<'a> {
94 #[doc = r"Sets the field bit"]
95 #[inline(always)]
96 pub fn set_bit(self) -> &'a mut W {
97 self.bit(true)
98 }
99 #[doc = r"Clears the field bit"]
100 #[inline(always)]
101 pub fn clear_bit(self) -> &'a mut W {
102 self.bit(false)
103 }
104 #[doc = r"Writes raw bits to the field"]
105 #[inline(always)]
106 pub fn bit(self, value: bool) -> &'a mut W {
107 self.w.bits = (self.w.bits & !(0x01 << 1)) | ((value as u32 & 0x01) << 1);
108 self.w
109 }
110}
111#[doc = "Field `CSEL2` reader - Comparison 2 Selection"]
112pub struct CSEL2_R(crate::FieldReader<bool, bool>);
113impl CSEL2_R {
114 #[inline(always)]
115 pub(crate) fn new(bits: bool) -> Self {
116 CSEL2_R(crate::FieldReader::new(bits))
117 }
118}
119impl core::ops::Deref for CSEL2_R {
120 type Target = crate::FieldReader<bool, bool>;
121 #[inline(always)]
122 fn deref(&self) -> &Self::Target {
123 &self.0
124 }
125}
126#[doc = "Field `CSEL2` writer - Comparison 2 Selection"]
127pub struct CSEL2_W<'a> {
128 w: &'a mut W,
129}
130impl<'a> CSEL2_W<'a> {
131 #[doc = r"Sets the field bit"]
132 #[inline(always)]
133 pub fn set_bit(self) -> &'a mut W {
134 self.bit(true)
135 }
136 #[doc = r"Clears the field bit"]
137 #[inline(always)]
138 pub fn clear_bit(self) -> &'a mut W {
139 self.bit(false)
140 }
141 #[doc = r"Writes raw bits to the field"]
142 #[inline(always)]
143 pub fn bit(self, value: bool) -> &'a mut W {
144 self.w.bits = (self.w.bits & !(0x01 << 2)) | ((value as u32 & 0x01) << 2);
145 self.w
146 }
147}
148#[doc = "Field `CSEL3` reader - Comparison 3 Selection"]
149pub struct CSEL3_R(crate::FieldReader<bool, bool>);
150impl CSEL3_R {
151 #[inline(always)]
152 pub(crate) fn new(bits: bool) -> Self {
153 CSEL3_R(crate::FieldReader::new(bits))
154 }
155}
156impl core::ops::Deref for CSEL3_R {
157 type Target = crate::FieldReader<bool, bool>;
158 #[inline(always)]
159 fn deref(&self) -> &Self::Target {
160 &self.0
161 }
162}
163#[doc = "Field `CSEL3` writer - Comparison 3 Selection"]
164pub struct CSEL3_W<'a> {
165 w: &'a mut W,
166}
167impl<'a> CSEL3_W<'a> {
168 #[doc = r"Sets the field bit"]
169 #[inline(always)]
170 pub fn set_bit(self) -> &'a mut W {
171 self.bit(true)
172 }
173 #[doc = r"Clears the field bit"]
174 #[inline(always)]
175 pub fn clear_bit(self) -> &'a mut W {
176 self.bit(false)
177 }
178 #[doc = r"Writes raw bits to the field"]
179 #[inline(always)]
180 pub fn bit(self, value: bool) -> &'a mut W {
181 self.w.bits = (self.w.bits & !(0x01 << 3)) | ((value as u32 & 0x01) << 3);
182 self.w
183 }
184}
185#[doc = "Field `CSEL4` reader - Comparison 4 Selection"]
186pub struct CSEL4_R(crate::FieldReader<bool, bool>);
187impl CSEL4_R {
188 #[inline(always)]
189 pub(crate) fn new(bits: bool) -> Self {
190 CSEL4_R(crate::FieldReader::new(bits))
191 }
192}
193impl core::ops::Deref for CSEL4_R {
194 type Target = crate::FieldReader<bool, bool>;
195 #[inline(always)]
196 fn deref(&self) -> &Self::Target {
197 &self.0
198 }
199}
200#[doc = "Field `CSEL4` writer - Comparison 4 Selection"]
201pub struct CSEL4_W<'a> {
202 w: &'a mut W,
203}
204impl<'a> CSEL4_W<'a> {
205 #[doc = r"Sets the field bit"]
206 #[inline(always)]
207 pub fn set_bit(self) -> &'a mut W {
208 self.bit(true)
209 }
210 #[doc = r"Clears the field bit"]
211 #[inline(always)]
212 pub fn clear_bit(self) -> &'a mut W {
213 self.bit(false)
214 }
215 #[doc = r"Writes raw bits to the field"]
216 #[inline(always)]
217 pub fn bit(self, value: bool) -> &'a mut W {
218 self.w.bits = (self.w.bits & !(0x01 << 4)) | ((value as u32 & 0x01) << 4);
219 self.w
220 }
221}
222#[doc = "Field `CSEL5` reader - Comparison 5 Selection"]
223pub struct CSEL5_R(crate::FieldReader<bool, bool>);
224impl CSEL5_R {
225 #[inline(always)]
226 pub(crate) fn new(bits: bool) -> Self {
227 CSEL5_R(crate::FieldReader::new(bits))
228 }
229}
230impl core::ops::Deref for CSEL5_R {
231 type Target = crate::FieldReader<bool, bool>;
232 #[inline(always)]
233 fn deref(&self) -> &Self::Target {
234 &self.0
235 }
236}
237#[doc = "Field `CSEL5` writer - Comparison 5 Selection"]
238pub struct CSEL5_W<'a> {
239 w: &'a mut W,
240}
241impl<'a> CSEL5_W<'a> {
242 #[doc = r"Sets the field bit"]
243 #[inline(always)]
244 pub fn set_bit(self) -> &'a mut W {
245 self.bit(true)
246 }
247 #[doc = r"Clears the field bit"]
248 #[inline(always)]
249 pub fn clear_bit(self) -> &'a mut W {
250 self.bit(false)
251 }
252 #[doc = r"Writes raw bits to the field"]
253 #[inline(always)]
254 pub fn bit(self, value: bool) -> &'a mut W {
255 self.w.bits = (self.w.bits & !(0x01 << 5)) | ((value as u32 & 0x01) << 5);
256 self.w
257 }
258}
259#[doc = "Field `CSEL6` reader - Comparison 6 Selection"]
260pub struct CSEL6_R(crate::FieldReader<bool, bool>);
261impl CSEL6_R {
262 #[inline(always)]
263 pub(crate) fn new(bits: bool) -> Self {
264 CSEL6_R(crate::FieldReader::new(bits))
265 }
266}
267impl core::ops::Deref for CSEL6_R {
268 type Target = crate::FieldReader<bool, bool>;
269 #[inline(always)]
270 fn deref(&self) -> &Self::Target {
271 &self.0
272 }
273}
274#[doc = "Field `CSEL6` writer - Comparison 6 Selection"]
275pub struct CSEL6_W<'a> {
276 w: &'a mut W,
277}
278impl<'a> CSEL6_W<'a> {
279 #[doc = r"Sets the field bit"]
280 #[inline(always)]
281 pub fn set_bit(self) -> &'a mut W {
282 self.bit(true)
283 }
284 #[doc = r"Clears the field bit"]
285 #[inline(always)]
286 pub fn clear_bit(self) -> &'a mut W {
287 self.bit(false)
288 }
289 #[doc = r"Writes raw bits to the field"]
290 #[inline(always)]
291 pub fn bit(self, value: bool) -> &'a mut W {
292 self.w.bits = (self.w.bits & !(0x01 << 6)) | ((value as u32 & 0x01) << 6);
293 self.w
294 }
295}
296#[doc = "Field `CSEL7` reader - Comparison 7 Selection"]
297pub struct CSEL7_R(crate::FieldReader<bool, bool>);
298impl CSEL7_R {
299 #[inline(always)]
300 pub(crate) fn new(bits: bool) -> Self {
301 CSEL7_R(crate::FieldReader::new(bits))
302 }
303}
304impl core::ops::Deref for CSEL7_R {
305 type Target = crate::FieldReader<bool, bool>;
306 #[inline(always)]
307 fn deref(&self) -> &Self::Target {
308 &self.0
309 }
310}
311#[doc = "Field `CSEL7` writer - Comparison 7 Selection"]
312pub struct CSEL7_W<'a> {
313 w: &'a mut W,
314}
315impl<'a> CSEL7_W<'a> {
316 #[doc = r"Sets the field bit"]
317 #[inline(always)]
318 pub fn set_bit(self) -> &'a mut W {
319 self.bit(true)
320 }
321 #[doc = r"Clears the field bit"]
322 #[inline(always)]
323 pub fn clear_bit(self) -> &'a mut W {
324 self.bit(false)
325 }
326 #[doc = r"Writes raw bits to the field"]
327 #[inline(always)]
328 pub fn bit(self, value: bool) -> &'a mut W {
329 self.w.bits = (self.w.bits & !(0x01 << 7)) | ((value as u32 & 0x01) << 7);
330 self.w
331 }
332}
333impl R {
334 #[doc = "Bit 0 - Comparison 0 Selection"]
335 #[inline(always)]
336 pub fn csel0(&self) -> CSEL0_R {
337 CSEL0_R::new((self.bits & 0x01) != 0)
338 }
339 #[doc = "Bit 1 - Comparison 1 Selection"]
340 #[inline(always)]
341 pub fn csel1(&self) -> CSEL1_R {
342 CSEL1_R::new(((self.bits >> 1) & 0x01) != 0)
343 }
344 #[doc = "Bit 2 - Comparison 2 Selection"]
345 #[inline(always)]
346 pub fn csel2(&self) -> CSEL2_R {
347 CSEL2_R::new(((self.bits >> 2) & 0x01) != 0)
348 }
349 #[doc = "Bit 3 - Comparison 3 Selection"]
350 #[inline(always)]
351 pub fn csel3(&self) -> CSEL3_R {
352 CSEL3_R::new(((self.bits >> 3) & 0x01) != 0)
353 }
354 #[doc = "Bit 4 - Comparison 4 Selection"]
355 #[inline(always)]
356 pub fn csel4(&self) -> CSEL4_R {
357 CSEL4_R::new(((self.bits >> 4) & 0x01) != 0)
358 }
359 #[doc = "Bit 5 - Comparison 5 Selection"]
360 #[inline(always)]
361 pub fn csel5(&self) -> CSEL5_R {
362 CSEL5_R::new(((self.bits >> 5) & 0x01) != 0)
363 }
364 #[doc = "Bit 6 - Comparison 6 Selection"]
365 #[inline(always)]
366 pub fn csel6(&self) -> CSEL6_R {
367 CSEL6_R::new(((self.bits >> 6) & 0x01) != 0)
368 }
369 #[doc = "Bit 7 - Comparison 7 Selection"]
370 #[inline(always)]
371 pub fn csel7(&self) -> CSEL7_R {
372 CSEL7_R::new(((self.bits >> 7) & 0x01) != 0)
373 }
374}
375impl W {
376 #[doc = "Bit 0 - Comparison 0 Selection"]
377 #[inline(always)]
378 pub fn csel0(&mut self) -> CSEL0_W {
379 CSEL0_W { w: self }
380 }
381 #[doc = "Bit 1 - Comparison 1 Selection"]
382 #[inline(always)]
383 pub fn csel1(&mut self) -> CSEL1_W {
384 CSEL1_W { w: self }
385 }
386 #[doc = "Bit 2 - Comparison 2 Selection"]
387 #[inline(always)]
388 pub fn csel2(&mut self) -> CSEL2_W {
389 CSEL2_W { w: self }
390 }
391 #[doc = "Bit 3 - Comparison 3 Selection"]
392 #[inline(always)]
393 pub fn csel3(&mut self) -> CSEL3_W {
394 CSEL3_W { w: self }
395 }
396 #[doc = "Bit 4 - Comparison 4 Selection"]
397 #[inline(always)]
398 pub fn csel4(&mut self) -> CSEL4_W {
399 CSEL4_W { w: self }
400 }
401 #[doc = "Bit 5 - Comparison 5 Selection"]
402 #[inline(always)]
403 pub fn csel5(&mut self) -> CSEL5_W {
404 CSEL5_W { w: self }
405 }
406 #[doc = "Bit 6 - Comparison 6 Selection"]
407 #[inline(always)]
408 pub fn csel6(&mut self) -> CSEL6_W {
409 CSEL6_W { w: self }
410 }
411 #[doc = "Bit 7 - Comparison 7 Selection"]
412 #[inline(always)]
413 pub fn csel7(&mut self) -> CSEL7_W {
414 CSEL7_W { w: self }
415 }
416 #[doc = "Writes raw bits to the register."]
417 #[inline(always)]
418 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
419 self.0.bits(bits);
420 self
421 }
422}
423#[doc = "PWM Event Line 0 Mode Register 0\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 [pwm_elmr](index.html) module"]
424pub struct PWM_ELMR_SPEC;
425impl crate::RegisterSpec for PWM_ELMR_SPEC {
426 type Ux = u32;
427}
428#[doc = "`read()` method returns [pwm_elmr::R](R) reader structure"]
429impl crate::Readable for PWM_ELMR_SPEC {
430 type Reader = R;
431}
432#[doc = "`write(|w| ..)` method takes [pwm_elmr::W](W) writer structure"]
433impl crate::Writable for PWM_ELMR_SPEC {
434 type Writer = W;
435}
436#[doc = "`reset()` method sets PWM_ELMR[%s]
437to value 0"]
438impl crate::Resettable for PWM_ELMR_SPEC {
439 #[inline(always)]
440 fn reset_value() -> Self::Ux {
441 0
442 }
443}