efm32pg12_pac/usart0/
ien.rs

1#[doc = "Reader of register IEN"]
2pub type R = crate::R<u32, super::IEN>;
3#[doc = "Writer for register IEN"]
4pub type W = crate::W<u32, super::IEN>;
5#[doc = "Register IEN `reset()`'s with value 0"]
6impl crate::ResetValue for super::IEN {
7    type Type = u32;
8    #[inline(always)]
9    fn reset_value() -> Self::Type {
10        0
11    }
12}
13#[doc = "Reader of field `TXC`"]
14pub type TXC_R = crate::R<bool, bool>;
15#[doc = "Write proxy for field `TXC`"]
16pub struct TXC_W<'a> {
17    w: &'a mut W,
18}
19impl<'a> TXC_W<'a> {
20    #[doc = r"Sets the field bit"]
21    #[inline(always)]
22    pub fn set_bit(self) -> &'a mut W {
23        self.bit(true)
24    }
25    #[doc = r"Clears the field bit"]
26    #[inline(always)]
27    pub fn clear_bit(self) -> &'a mut W {
28        self.bit(false)
29    }
30    #[doc = r"Writes raw bits to the field"]
31    #[inline(always)]
32    pub fn bit(self, value: bool) -> &'a mut W {
33        self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
34        self.w
35    }
36}
37#[doc = "Reader of field `TXBL`"]
38pub type TXBL_R = crate::R<bool, bool>;
39#[doc = "Write proxy for field `TXBL`"]
40pub struct TXBL_W<'a> {
41    w: &'a mut W,
42}
43impl<'a> TXBL_W<'a> {
44    #[doc = r"Sets the field bit"]
45    #[inline(always)]
46    pub fn set_bit(self) -> &'a mut W {
47        self.bit(true)
48    }
49    #[doc = r"Clears the field bit"]
50    #[inline(always)]
51    pub fn clear_bit(self) -> &'a mut W {
52        self.bit(false)
53    }
54    #[doc = r"Writes raw bits to the field"]
55    #[inline(always)]
56    pub fn bit(self, value: bool) -> &'a mut W {
57        self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
58        self.w
59    }
60}
61#[doc = "Reader of field `RXDATAV`"]
62pub type RXDATAV_R = crate::R<bool, bool>;
63#[doc = "Write proxy for field `RXDATAV`"]
64pub struct RXDATAV_W<'a> {
65    w: &'a mut W,
66}
67impl<'a> RXDATAV_W<'a> {
68    #[doc = r"Sets the field bit"]
69    #[inline(always)]
70    pub fn set_bit(self) -> &'a mut W {
71        self.bit(true)
72    }
73    #[doc = r"Clears the field bit"]
74    #[inline(always)]
75    pub fn clear_bit(self) -> &'a mut W {
76        self.bit(false)
77    }
78    #[doc = r"Writes raw bits to the field"]
79    #[inline(always)]
80    pub fn bit(self, value: bool) -> &'a mut W {
81        self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u32) & 0x01) << 2);
82        self.w
83    }
84}
85#[doc = "Reader of field `RXFULL`"]
86pub type RXFULL_R = crate::R<bool, bool>;
87#[doc = "Write proxy for field `RXFULL`"]
88pub struct RXFULL_W<'a> {
89    w: &'a mut W,
90}
91impl<'a> RXFULL_W<'a> {
92    #[doc = r"Sets the field bit"]
93    #[inline(always)]
94    pub fn set_bit(self) -> &'a mut W {
95        self.bit(true)
96    }
97    #[doc = r"Clears the field bit"]
98    #[inline(always)]
99    pub fn clear_bit(self) -> &'a mut W {
100        self.bit(false)
101    }
102    #[doc = r"Writes raw bits to the field"]
103    #[inline(always)]
104    pub fn bit(self, value: bool) -> &'a mut W {
105        self.w.bits = (self.w.bits & !(0x01 << 3)) | (((value as u32) & 0x01) << 3);
106        self.w
107    }
108}
109#[doc = "Reader of field `RXOF`"]
110pub type RXOF_R = crate::R<bool, bool>;
111#[doc = "Write proxy for field `RXOF`"]
112pub struct RXOF_W<'a> {
113    w: &'a mut W,
114}
115impl<'a> RXOF_W<'a> {
116    #[doc = r"Sets the field bit"]
117    #[inline(always)]
118    pub fn set_bit(self) -> &'a mut W {
119        self.bit(true)
120    }
121    #[doc = r"Clears the field bit"]
122    #[inline(always)]
123    pub fn clear_bit(self) -> &'a mut W {
124        self.bit(false)
125    }
126    #[doc = r"Writes raw bits to the field"]
127    #[inline(always)]
128    pub fn bit(self, value: bool) -> &'a mut W {
129        self.w.bits = (self.w.bits & !(0x01 << 4)) | (((value as u32) & 0x01) << 4);
130        self.w
131    }
132}
133#[doc = "Reader of field `RXUF`"]
134pub type RXUF_R = crate::R<bool, bool>;
135#[doc = "Write proxy for field `RXUF`"]
136pub struct RXUF_W<'a> {
137    w: &'a mut W,
138}
139impl<'a> RXUF_W<'a> {
140    #[doc = r"Sets the field bit"]
141    #[inline(always)]
142    pub fn set_bit(self) -> &'a mut W {
143        self.bit(true)
144    }
145    #[doc = r"Clears the field bit"]
146    #[inline(always)]
147    pub fn clear_bit(self) -> &'a mut W {
148        self.bit(false)
149    }
150    #[doc = r"Writes raw bits to the field"]
151    #[inline(always)]
152    pub fn bit(self, value: bool) -> &'a mut W {
153        self.w.bits = (self.w.bits & !(0x01 << 5)) | (((value as u32) & 0x01) << 5);
154        self.w
155    }
156}
157#[doc = "Reader of field `TXOF`"]
158pub type TXOF_R = crate::R<bool, bool>;
159#[doc = "Write proxy for field `TXOF`"]
160pub struct TXOF_W<'a> {
161    w: &'a mut W,
162}
163impl<'a> TXOF_W<'a> {
164    #[doc = r"Sets the field bit"]
165    #[inline(always)]
166    pub fn set_bit(self) -> &'a mut W {
167        self.bit(true)
168    }
169    #[doc = r"Clears the field bit"]
170    #[inline(always)]
171    pub fn clear_bit(self) -> &'a mut W {
172        self.bit(false)
173    }
174    #[doc = r"Writes raw bits to the field"]
175    #[inline(always)]
176    pub fn bit(self, value: bool) -> &'a mut W {
177        self.w.bits = (self.w.bits & !(0x01 << 6)) | (((value as u32) & 0x01) << 6);
178        self.w
179    }
180}
181#[doc = "Reader of field `TXUF`"]
182pub type TXUF_R = crate::R<bool, bool>;
183#[doc = "Write proxy for field `TXUF`"]
184pub struct TXUF_W<'a> {
185    w: &'a mut W,
186}
187impl<'a> TXUF_W<'a> {
188    #[doc = r"Sets the field bit"]
189    #[inline(always)]
190    pub fn set_bit(self) -> &'a mut W {
191        self.bit(true)
192    }
193    #[doc = r"Clears the field bit"]
194    #[inline(always)]
195    pub fn clear_bit(self) -> &'a mut W {
196        self.bit(false)
197    }
198    #[doc = r"Writes raw bits to the field"]
199    #[inline(always)]
200    pub fn bit(self, value: bool) -> &'a mut W {
201        self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u32) & 0x01) << 7);
202        self.w
203    }
204}
205#[doc = "Reader of field `PERR`"]
206pub type PERR_R = crate::R<bool, bool>;
207#[doc = "Write proxy for field `PERR`"]
208pub struct PERR_W<'a> {
209    w: &'a mut W,
210}
211impl<'a> PERR_W<'a> {
212    #[doc = r"Sets the field bit"]
213    #[inline(always)]
214    pub fn set_bit(self) -> &'a mut W {
215        self.bit(true)
216    }
217    #[doc = r"Clears the field bit"]
218    #[inline(always)]
219    pub fn clear_bit(self) -> &'a mut W {
220        self.bit(false)
221    }
222    #[doc = r"Writes raw bits to the field"]
223    #[inline(always)]
224    pub fn bit(self, value: bool) -> &'a mut W {
225        self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u32) & 0x01) << 8);
226        self.w
227    }
228}
229#[doc = "Reader of field `FERR`"]
230pub type FERR_R = crate::R<bool, bool>;
231#[doc = "Write proxy for field `FERR`"]
232pub struct FERR_W<'a> {
233    w: &'a mut W,
234}
235impl<'a> FERR_W<'a> {
236    #[doc = r"Sets the field bit"]
237    #[inline(always)]
238    pub fn set_bit(self) -> &'a mut W {
239        self.bit(true)
240    }
241    #[doc = r"Clears the field bit"]
242    #[inline(always)]
243    pub fn clear_bit(self) -> &'a mut W {
244        self.bit(false)
245    }
246    #[doc = r"Writes raw bits to the field"]
247    #[inline(always)]
248    pub fn bit(self, value: bool) -> &'a mut W {
249        self.w.bits = (self.w.bits & !(0x01 << 9)) | (((value as u32) & 0x01) << 9);
250        self.w
251    }
252}
253#[doc = "Reader of field `MPAF`"]
254pub type MPAF_R = crate::R<bool, bool>;
255#[doc = "Write proxy for field `MPAF`"]
256pub struct MPAF_W<'a> {
257    w: &'a mut W,
258}
259impl<'a> MPAF_W<'a> {
260    #[doc = r"Sets the field bit"]
261    #[inline(always)]
262    pub fn set_bit(self) -> &'a mut W {
263        self.bit(true)
264    }
265    #[doc = r"Clears the field bit"]
266    #[inline(always)]
267    pub fn clear_bit(self) -> &'a mut W {
268        self.bit(false)
269    }
270    #[doc = r"Writes raw bits to the field"]
271    #[inline(always)]
272    pub fn bit(self, value: bool) -> &'a mut W {
273        self.w.bits = (self.w.bits & !(0x01 << 10)) | (((value as u32) & 0x01) << 10);
274        self.w
275    }
276}
277#[doc = "Reader of field `SSM`"]
278pub type SSM_R = crate::R<bool, bool>;
279#[doc = "Write proxy for field `SSM`"]
280pub struct SSM_W<'a> {
281    w: &'a mut W,
282}
283impl<'a> SSM_W<'a> {
284    #[doc = r"Sets the field bit"]
285    #[inline(always)]
286    pub fn set_bit(self) -> &'a mut W {
287        self.bit(true)
288    }
289    #[doc = r"Clears the field bit"]
290    #[inline(always)]
291    pub fn clear_bit(self) -> &'a mut W {
292        self.bit(false)
293    }
294    #[doc = r"Writes raw bits to the field"]
295    #[inline(always)]
296    pub fn bit(self, value: bool) -> &'a mut W {
297        self.w.bits = (self.w.bits & !(0x01 << 11)) | (((value as u32) & 0x01) << 11);
298        self.w
299    }
300}
301#[doc = "Reader of field `CCF`"]
302pub type CCF_R = crate::R<bool, bool>;
303#[doc = "Write proxy for field `CCF`"]
304pub struct CCF_W<'a> {
305    w: &'a mut W,
306}
307impl<'a> CCF_W<'a> {
308    #[doc = r"Sets the field bit"]
309    #[inline(always)]
310    pub fn set_bit(self) -> &'a mut W {
311        self.bit(true)
312    }
313    #[doc = r"Clears the field bit"]
314    #[inline(always)]
315    pub fn clear_bit(self) -> &'a mut W {
316        self.bit(false)
317    }
318    #[doc = r"Writes raw bits to the field"]
319    #[inline(always)]
320    pub fn bit(self, value: bool) -> &'a mut W {
321        self.w.bits = (self.w.bits & !(0x01 << 12)) | (((value as u32) & 0x01) << 12);
322        self.w
323    }
324}
325#[doc = "Reader of field `TXIDLE`"]
326pub type TXIDLE_R = crate::R<bool, bool>;
327#[doc = "Write proxy for field `TXIDLE`"]
328pub struct TXIDLE_W<'a> {
329    w: &'a mut W,
330}
331impl<'a> TXIDLE_W<'a> {
332    #[doc = r"Sets the field bit"]
333    #[inline(always)]
334    pub fn set_bit(self) -> &'a mut W {
335        self.bit(true)
336    }
337    #[doc = r"Clears the field bit"]
338    #[inline(always)]
339    pub fn clear_bit(self) -> &'a mut W {
340        self.bit(false)
341    }
342    #[doc = r"Writes raw bits to the field"]
343    #[inline(always)]
344    pub fn bit(self, value: bool) -> &'a mut W {
345        self.w.bits = (self.w.bits & !(0x01 << 13)) | (((value as u32) & 0x01) << 13);
346        self.w
347    }
348}
349#[doc = "Reader of field `TCMP0`"]
350pub type TCMP0_R = crate::R<bool, bool>;
351#[doc = "Write proxy for field `TCMP0`"]
352pub struct TCMP0_W<'a> {
353    w: &'a mut W,
354}
355impl<'a> TCMP0_W<'a> {
356    #[doc = r"Sets the field bit"]
357    #[inline(always)]
358    pub fn set_bit(self) -> &'a mut W {
359        self.bit(true)
360    }
361    #[doc = r"Clears the field bit"]
362    #[inline(always)]
363    pub fn clear_bit(self) -> &'a mut W {
364        self.bit(false)
365    }
366    #[doc = r"Writes raw bits to the field"]
367    #[inline(always)]
368    pub fn bit(self, value: bool) -> &'a mut W {
369        self.w.bits = (self.w.bits & !(0x01 << 14)) | (((value as u32) & 0x01) << 14);
370        self.w
371    }
372}
373#[doc = "Reader of field `TCMP1`"]
374pub type TCMP1_R = crate::R<bool, bool>;
375#[doc = "Write proxy for field `TCMP1`"]
376pub struct TCMP1_W<'a> {
377    w: &'a mut W,
378}
379impl<'a> TCMP1_W<'a> {
380    #[doc = r"Sets the field bit"]
381    #[inline(always)]
382    pub fn set_bit(self) -> &'a mut W {
383        self.bit(true)
384    }
385    #[doc = r"Clears the field bit"]
386    #[inline(always)]
387    pub fn clear_bit(self) -> &'a mut W {
388        self.bit(false)
389    }
390    #[doc = r"Writes raw bits to the field"]
391    #[inline(always)]
392    pub fn bit(self, value: bool) -> &'a mut W {
393        self.w.bits = (self.w.bits & !(0x01 << 15)) | (((value as u32) & 0x01) << 15);
394        self.w
395    }
396}
397#[doc = "Reader of field `TCMP2`"]
398pub type TCMP2_R = crate::R<bool, bool>;
399#[doc = "Write proxy for field `TCMP2`"]
400pub struct TCMP2_W<'a> {
401    w: &'a mut W,
402}
403impl<'a> TCMP2_W<'a> {
404    #[doc = r"Sets the field bit"]
405    #[inline(always)]
406    pub fn set_bit(self) -> &'a mut W {
407        self.bit(true)
408    }
409    #[doc = r"Clears the field bit"]
410    #[inline(always)]
411    pub fn clear_bit(self) -> &'a mut W {
412        self.bit(false)
413    }
414    #[doc = r"Writes raw bits to the field"]
415    #[inline(always)]
416    pub fn bit(self, value: bool) -> &'a mut W {
417        self.w.bits = (self.w.bits & !(0x01 << 16)) | (((value as u32) & 0x01) << 16);
418        self.w
419    }
420}
421impl R {
422    #[doc = "Bit 0 - TXC Interrupt Enable"]
423    #[inline(always)]
424    pub fn txc(&self) -> TXC_R {
425        TXC_R::new((self.bits & 0x01) != 0)
426    }
427    #[doc = "Bit 1 - TXBL Interrupt Enable"]
428    #[inline(always)]
429    pub fn txbl(&self) -> TXBL_R {
430        TXBL_R::new(((self.bits >> 1) & 0x01) != 0)
431    }
432    #[doc = "Bit 2 - RXDATAV Interrupt Enable"]
433    #[inline(always)]
434    pub fn rxdatav(&self) -> RXDATAV_R {
435        RXDATAV_R::new(((self.bits >> 2) & 0x01) != 0)
436    }
437    #[doc = "Bit 3 - RXFULL Interrupt Enable"]
438    #[inline(always)]
439    pub fn rxfull(&self) -> RXFULL_R {
440        RXFULL_R::new(((self.bits >> 3) & 0x01) != 0)
441    }
442    #[doc = "Bit 4 - RXOF Interrupt Enable"]
443    #[inline(always)]
444    pub fn rxof(&self) -> RXOF_R {
445        RXOF_R::new(((self.bits >> 4) & 0x01) != 0)
446    }
447    #[doc = "Bit 5 - RXUF Interrupt Enable"]
448    #[inline(always)]
449    pub fn rxuf(&self) -> RXUF_R {
450        RXUF_R::new(((self.bits >> 5) & 0x01) != 0)
451    }
452    #[doc = "Bit 6 - TXOF Interrupt Enable"]
453    #[inline(always)]
454    pub fn txof(&self) -> TXOF_R {
455        TXOF_R::new(((self.bits >> 6) & 0x01) != 0)
456    }
457    #[doc = "Bit 7 - TXUF Interrupt Enable"]
458    #[inline(always)]
459    pub fn txuf(&self) -> TXUF_R {
460        TXUF_R::new(((self.bits >> 7) & 0x01) != 0)
461    }
462    #[doc = "Bit 8 - PERR Interrupt Enable"]
463    #[inline(always)]
464    pub fn perr(&self) -> PERR_R {
465        PERR_R::new(((self.bits >> 8) & 0x01) != 0)
466    }
467    #[doc = "Bit 9 - FERR Interrupt Enable"]
468    #[inline(always)]
469    pub fn ferr(&self) -> FERR_R {
470        FERR_R::new(((self.bits >> 9) & 0x01) != 0)
471    }
472    #[doc = "Bit 10 - MPAF Interrupt Enable"]
473    #[inline(always)]
474    pub fn mpaf(&self) -> MPAF_R {
475        MPAF_R::new(((self.bits >> 10) & 0x01) != 0)
476    }
477    #[doc = "Bit 11 - SSM Interrupt Enable"]
478    #[inline(always)]
479    pub fn ssm(&self) -> SSM_R {
480        SSM_R::new(((self.bits >> 11) & 0x01) != 0)
481    }
482    #[doc = "Bit 12 - CCF Interrupt Enable"]
483    #[inline(always)]
484    pub fn ccf(&self) -> CCF_R {
485        CCF_R::new(((self.bits >> 12) & 0x01) != 0)
486    }
487    #[doc = "Bit 13 - TXIDLE Interrupt Enable"]
488    #[inline(always)]
489    pub fn txidle(&self) -> TXIDLE_R {
490        TXIDLE_R::new(((self.bits >> 13) & 0x01) != 0)
491    }
492    #[doc = "Bit 14 - TCMP0 Interrupt Enable"]
493    #[inline(always)]
494    pub fn tcmp0(&self) -> TCMP0_R {
495        TCMP0_R::new(((self.bits >> 14) & 0x01) != 0)
496    }
497    #[doc = "Bit 15 - TCMP1 Interrupt Enable"]
498    #[inline(always)]
499    pub fn tcmp1(&self) -> TCMP1_R {
500        TCMP1_R::new(((self.bits >> 15) & 0x01) != 0)
501    }
502    #[doc = "Bit 16 - TCMP2 Interrupt Enable"]
503    #[inline(always)]
504    pub fn tcmp2(&self) -> TCMP2_R {
505        TCMP2_R::new(((self.bits >> 16) & 0x01) != 0)
506    }
507}
508impl W {
509    #[doc = "Bit 0 - TXC Interrupt Enable"]
510    #[inline(always)]
511    pub fn txc(&mut self) -> TXC_W {
512        TXC_W { w: self }
513    }
514    #[doc = "Bit 1 - TXBL Interrupt Enable"]
515    #[inline(always)]
516    pub fn txbl(&mut self) -> TXBL_W {
517        TXBL_W { w: self }
518    }
519    #[doc = "Bit 2 - RXDATAV Interrupt Enable"]
520    #[inline(always)]
521    pub fn rxdatav(&mut self) -> RXDATAV_W {
522        RXDATAV_W { w: self }
523    }
524    #[doc = "Bit 3 - RXFULL Interrupt Enable"]
525    #[inline(always)]
526    pub fn rxfull(&mut self) -> RXFULL_W {
527        RXFULL_W { w: self }
528    }
529    #[doc = "Bit 4 - RXOF Interrupt Enable"]
530    #[inline(always)]
531    pub fn rxof(&mut self) -> RXOF_W {
532        RXOF_W { w: self }
533    }
534    #[doc = "Bit 5 - RXUF Interrupt Enable"]
535    #[inline(always)]
536    pub fn rxuf(&mut self) -> RXUF_W {
537        RXUF_W { w: self }
538    }
539    #[doc = "Bit 6 - TXOF Interrupt Enable"]
540    #[inline(always)]
541    pub fn txof(&mut self) -> TXOF_W {
542        TXOF_W { w: self }
543    }
544    #[doc = "Bit 7 - TXUF Interrupt Enable"]
545    #[inline(always)]
546    pub fn txuf(&mut self) -> TXUF_W {
547        TXUF_W { w: self }
548    }
549    #[doc = "Bit 8 - PERR Interrupt Enable"]
550    #[inline(always)]
551    pub fn perr(&mut self) -> PERR_W {
552        PERR_W { w: self }
553    }
554    #[doc = "Bit 9 - FERR Interrupt Enable"]
555    #[inline(always)]
556    pub fn ferr(&mut self) -> FERR_W {
557        FERR_W { w: self }
558    }
559    #[doc = "Bit 10 - MPAF Interrupt Enable"]
560    #[inline(always)]
561    pub fn mpaf(&mut self) -> MPAF_W {
562        MPAF_W { w: self }
563    }
564    #[doc = "Bit 11 - SSM Interrupt Enable"]
565    #[inline(always)]
566    pub fn ssm(&mut self) -> SSM_W {
567        SSM_W { w: self }
568    }
569    #[doc = "Bit 12 - CCF Interrupt Enable"]
570    #[inline(always)]
571    pub fn ccf(&mut self) -> CCF_W {
572        CCF_W { w: self }
573    }
574    #[doc = "Bit 13 - TXIDLE Interrupt Enable"]
575    #[inline(always)]
576    pub fn txidle(&mut self) -> TXIDLE_W {
577        TXIDLE_W { w: self }
578    }
579    #[doc = "Bit 14 - TCMP0 Interrupt Enable"]
580    #[inline(always)]
581    pub fn tcmp0(&mut self) -> TCMP0_W {
582        TCMP0_W { w: self }
583    }
584    #[doc = "Bit 15 - TCMP1 Interrupt Enable"]
585    #[inline(always)]
586    pub fn tcmp1(&mut self) -> TCMP1_W {
587        TCMP1_W { w: self }
588    }
589    #[doc = "Bit 16 - TCMP2 Interrupt Enable"]
590    #[inline(always)]
591    pub fn tcmp2(&mut self) -> TCMP2_W {
592        TCMP2_W { w: self }
593    }
594}