efm32pg12_pac/i2c0/
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 `START`"]
14pub type START_R = crate::R<bool, bool>;
15#[doc = "Write proxy for field `START`"]
16pub struct START_W<'a> {
17    w: &'a mut W,
18}
19impl<'a> START_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 `RSTART`"]
38pub type RSTART_R = crate::R<bool, bool>;
39#[doc = "Write proxy for field `RSTART`"]
40pub struct RSTART_W<'a> {
41    w: &'a mut W,
42}
43impl<'a> RSTART_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 `ADDR`"]
62pub type ADDR_R = crate::R<bool, bool>;
63#[doc = "Write proxy for field `ADDR`"]
64pub struct ADDR_W<'a> {
65    w: &'a mut W,
66}
67impl<'a> ADDR_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 `TXC`"]
86pub type TXC_R = crate::R<bool, bool>;
87#[doc = "Write proxy for field `TXC`"]
88pub struct TXC_W<'a> {
89    w: &'a mut W,
90}
91impl<'a> TXC_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 `TXBL`"]
110pub type TXBL_R = crate::R<bool, bool>;
111#[doc = "Write proxy for field `TXBL`"]
112pub struct TXBL_W<'a> {
113    w: &'a mut W,
114}
115impl<'a> TXBL_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 `RXDATAV`"]
134pub type RXDATAV_R = crate::R<bool, bool>;
135#[doc = "Write proxy for field `RXDATAV`"]
136pub struct RXDATAV_W<'a> {
137    w: &'a mut W,
138}
139impl<'a> RXDATAV_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 `ACK`"]
158pub type ACK_R = crate::R<bool, bool>;
159#[doc = "Write proxy for field `ACK`"]
160pub struct ACK_W<'a> {
161    w: &'a mut W,
162}
163impl<'a> ACK_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 `NACK`"]
182pub type NACK_R = crate::R<bool, bool>;
183#[doc = "Write proxy for field `NACK`"]
184pub struct NACK_W<'a> {
185    w: &'a mut W,
186}
187impl<'a> NACK_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 `MSTOP`"]
206pub type MSTOP_R = crate::R<bool, bool>;
207#[doc = "Write proxy for field `MSTOP`"]
208pub struct MSTOP_W<'a> {
209    w: &'a mut W,
210}
211impl<'a> MSTOP_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 `ARBLOST`"]
230pub type ARBLOST_R = crate::R<bool, bool>;
231#[doc = "Write proxy for field `ARBLOST`"]
232pub struct ARBLOST_W<'a> {
233    w: &'a mut W,
234}
235impl<'a> ARBLOST_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 `BUSERR`"]
254pub type BUSERR_R = crate::R<bool, bool>;
255#[doc = "Write proxy for field `BUSERR`"]
256pub struct BUSERR_W<'a> {
257    w: &'a mut W,
258}
259impl<'a> BUSERR_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 `BUSHOLD`"]
278pub type BUSHOLD_R = crate::R<bool, bool>;
279#[doc = "Write proxy for field `BUSHOLD`"]
280pub struct BUSHOLD_W<'a> {
281    w: &'a mut W,
282}
283impl<'a> BUSHOLD_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 `TXOF`"]
302pub type TXOF_R = crate::R<bool, bool>;
303#[doc = "Write proxy for field `TXOF`"]
304pub struct TXOF_W<'a> {
305    w: &'a mut W,
306}
307impl<'a> TXOF_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 `RXUF`"]
326pub type RXUF_R = crate::R<bool, bool>;
327#[doc = "Write proxy for field `RXUF`"]
328pub struct RXUF_W<'a> {
329    w: &'a mut W,
330}
331impl<'a> RXUF_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 `BITO`"]
350pub type BITO_R = crate::R<bool, bool>;
351#[doc = "Write proxy for field `BITO`"]
352pub struct BITO_W<'a> {
353    w: &'a mut W,
354}
355impl<'a> BITO_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 `CLTO`"]
374pub type CLTO_R = crate::R<bool, bool>;
375#[doc = "Write proxy for field `CLTO`"]
376pub struct CLTO_W<'a> {
377    w: &'a mut W,
378}
379impl<'a> CLTO_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 `SSTOP`"]
398pub type SSTOP_R = crate::R<bool, bool>;
399#[doc = "Write proxy for field `SSTOP`"]
400pub struct SSTOP_W<'a> {
401    w: &'a mut W,
402}
403impl<'a> SSTOP_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}
421#[doc = "Reader of field `RXFULL`"]
422pub type RXFULL_R = crate::R<bool, bool>;
423#[doc = "Write proxy for field `RXFULL`"]
424pub struct RXFULL_W<'a> {
425    w: &'a mut W,
426}
427impl<'a> RXFULL_W<'a> {
428    #[doc = r"Sets the field bit"]
429    #[inline(always)]
430    pub fn set_bit(self) -> &'a mut W {
431        self.bit(true)
432    }
433    #[doc = r"Clears the field bit"]
434    #[inline(always)]
435    pub fn clear_bit(self) -> &'a mut W {
436        self.bit(false)
437    }
438    #[doc = r"Writes raw bits to the field"]
439    #[inline(always)]
440    pub fn bit(self, value: bool) -> &'a mut W {
441        self.w.bits = (self.w.bits & !(0x01 << 17)) | (((value as u32) & 0x01) << 17);
442        self.w
443    }
444}
445#[doc = "Reader of field `CLERR`"]
446pub type CLERR_R = crate::R<bool, bool>;
447#[doc = "Write proxy for field `CLERR`"]
448pub struct CLERR_W<'a> {
449    w: &'a mut W,
450}
451impl<'a> CLERR_W<'a> {
452    #[doc = r"Sets the field bit"]
453    #[inline(always)]
454    pub fn set_bit(self) -> &'a mut W {
455        self.bit(true)
456    }
457    #[doc = r"Clears the field bit"]
458    #[inline(always)]
459    pub fn clear_bit(self) -> &'a mut W {
460        self.bit(false)
461    }
462    #[doc = r"Writes raw bits to the field"]
463    #[inline(always)]
464    pub fn bit(self, value: bool) -> &'a mut W {
465        self.w.bits = (self.w.bits & !(0x01 << 18)) | (((value as u32) & 0x01) << 18);
466        self.w
467    }
468}
469impl R {
470    #[doc = "Bit 0 - START Interrupt Enable"]
471    #[inline(always)]
472    pub fn start(&self) -> START_R {
473        START_R::new((self.bits & 0x01) != 0)
474    }
475    #[doc = "Bit 1 - RSTART Interrupt Enable"]
476    #[inline(always)]
477    pub fn rstart(&self) -> RSTART_R {
478        RSTART_R::new(((self.bits >> 1) & 0x01) != 0)
479    }
480    #[doc = "Bit 2 - ADDR Interrupt Enable"]
481    #[inline(always)]
482    pub fn addr(&self) -> ADDR_R {
483        ADDR_R::new(((self.bits >> 2) & 0x01) != 0)
484    }
485    #[doc = "Bit 3 - TXC Interrupt Enable"]
486    #[inline(always)]
487    pub fn txc(&self) -> TXC_R {
488        TXC_R::new(((self.bits >> 3) & 0x01) != 0)
489    }
490    #[doc = "Bit 4 - TXBL Interrupt Enable"]
491    #[inline(always)]
492    pub fn txbl(&self) -> TXBL_R {
493        TXBL_R::new(((self.bits >> 4) & 0x01) != 0)
494    }
495    #[doc = "Bit 5 - RXDATAV Interrupt Enable"]
496    #[inline(always)]
497    pub fn rxdatav(&self) -> RXDATAV_R {
498        RXDATAV_R::new(((self.bits >> 5) & 0x01) != 0)
499    }
500    #[doc = "Bit 6 - ACK Interrupt Enable"]
501    #[inline(always)]
502    pub fn ack(&self) -> ACK_R {
503        ACK_R::new(((self.bits >> 6) & 0x01) != 0)
504    }
505    #[doc = "Bit 7 - NACK Interrupt Enable"]
506    #[inline(always)]
507    pub fn nack(&self) -> NACK_R {
508        NACK_R::new(((self.bits >> 7) & 0x01) != 0)
509    }
510    #[doc = "Bit 8 - MSTOP Interrupt Enable"]
511    #[inline(always)]
512    pub fn mstop(&self) -> MSTOP_R {
513        MSTOP_R::new(((self.bits >> 8) & 0x01) != 0)
514    }
515    #[doc = "Bit 9 - ARBLOST Interrupt Enable"]
516    #[inline(always)]
517    pub fn arblost(&self) -> ARBLOST_R {
518        ARBLOST_R::new(((self.bits >> 9) & 0x01) != 0)
519    }
520    #[doc = "Bit 10 - BUSERR Interrupt Enable"]
521    #[inline(always)]
522    pub fn buserr(&self) -> BUSERR_R {
523        BUSERR_R::new(((self.bits >> 10) & 0x01) != 0)
524    }
525    #[doc = "Bit 11 - BUSHOLD Interrupt Enable"]
526    #[inline(always)]
527    pub fn bushold(&self) -> BUSHOLD_R {
528        BUSHOLD_R::new(((self.bits >> 11) & 0x01) != 0)
529    }
530    #[doc = "Bit 12 - TXOF Interrupt Enable"]
531    #[inline(always)]
532    pub fn txof(&self) -> TXOF_R {
533        TXOF_R::new(((self.bits >> 12) & 0x01) != 0)
534    }
535    #[doc = "Bit 13 - RXUF Interrupt Enable"]
536    #[inline(always)]
537    pub fn rxuf(&self) -> RXUF_R {
538        RXUF_R::new(((self.bits >> 13) & 0x01) != 0)
539    }
540    #[doc = "Bit 14 - BITO Interrupt Enable"]
541    #[inline(always)]
542    pub fn bito(&self) -> BITO_R {
543        BITO_R::new(((self.bits >> 14) & 0x01) != 0)
544    }
545    #[doc = "Bit 15 - CLTO Interrupt Enable"]
546    #[inline(always)]
547    pub fn clto(&self) -> CLTO_R {
548        CLTO_R::new(((self.bits >> 15) & 0x01) != 0)
549    }
550    #[doc = "Bit 16 - SSTOP Interrupt Enable"]
551    #[inline(always)]
552    pub fn sstop(&self) -> SSTOP_R {
553        SSTOP_R::new(((self.bits >> 16) & 0x01) != 0)
554    }
555    #[doc = "Bit 17 - RXFULL Interrupt Enable"]
556    #[inline(always)]
557    pub fn rxfull(&self) -> RXFULL_R {
558        RXFULL_R::new(((self.bits >> 17) & 0x01) != 0)
559    }
560    #[doc = "Bit 18 - CLERR Interrupt Enable"]
561    #[inline(always)]
562    pub fn clerr(&self) -> CLERR_R {
563        CLERR_R::new(((self.bits >> 18) & 0x01) != 0)
564    }
565}
566impl W {
567    #[doc = "Bit 0 - START Interrupt Enable"]
568    #[inline(always)]
569    pub fn start(&mut self) -> START_W {
570        START_W { w: self }
571    }
572    #[doc = "Bit 1 - RSTART Interrupt Enable"]
573    #[inline(always)]
574    pub fn rstart(&mut self) -> RSTART_W {
575        RSTART_W { w: self }
576    }
577    #[doc = "Bit 2 - ADDR Interrupt Enable"]
578    #[inline(always)]
579    pub fn addr(&mut self) -> ADDR_W {
580        ADDR_W { w: self }
581    }
582    #[doc = "Bit 3 - TXC Interrupt Enable"]
583    #[inline(always)]
584    pub fn txc(&mut self) -> TXC_W {
585        TXC_W { w: self }
586    }
587    #[doc = "Bit 4 - TXBL Interrupt Enable"]
588    #[inline(always)]
589    pub fn txbl(&mut self) -> TXBL_W {
590        TXBL_W { w: self }
591    }
592    #[doc = "Bit 5 - RXDATAV Interrupt Enable"]
593    #[inline(always)]
594    pub fn rxdatav(&mut self) -> RXDATAV_W {
595        RXDATAV_W { w: self }
596    }
597    #[doc = "Bit 6 - ACK Interrupt Enable"]
598    #[inline(always)]
599    pub fn ack(&mut self) -> ACK_W {
600        ACK_W { w: self }
601    }
602    #[doc = "Bit 7 - NACK Interrupt Enable"]
603    #[inline(always)]
604    pub fn nack(&mut self) -> NACK_W {
605        NACK_W { w: self }
606    }
607    #[doc = "Bit 8 - MSTOP Interrupt Enable"]
608    #[inline(always)]
609    pub fn mstop(&mut self) -> MSTOP_W {
610        MSTOP_W { w: self }
611    }
612    #[doc = "Bit 9 - ARBLOST Interrupt Enable"]
613    #[inline(always)]
614    pub fn arblost(&mut self) -> ARBLOST_W {
615        ARBLOST_W { w: self }
616    }
617    #[doc = "Bit 10 - BUSERR Interrupt Enable"]
618    #[inline(always)]
619    pub fn buserr(&mut self) -> BUSERR_W {
620        BUSERR_W { w: self }
621    }
622    #[doc = "Bit 11 - BUSHOLD Interrupt Enable"]
623    #[inline(always)]
624    pub fn bushold(&mut self) -> BUSHOLD_W {
625        BUSHOLD_W { w: self }
626    }
627    #[doc = "Bit 12 - TXOF Interrupt Enable"]
628    #[inline(always)]
629    pub fn txof(&mut self) -> TXOF_W {
630        TXOF_W { w: self }
631    }
632    #[doc = "Bit 13 - RXUF Interrupt Enable"]
633    #[inline(always)]
634    pub fn rxuf(&mut self) -> RXUF_W {
635        RXUF_W { w: self }
636    }
637    #[doc = "Bit 14 - BITO Interrupt Enable"]
638    #[inline(always)]
639    pub fn bito(&mut self) -> BITO_W {
640        BITO_W { w: self }
641    }
642    #[doc = "Bit 15 - CLTO Interrupt Enable"]
643    #[inline(always)]
644    pub fn clto(&mut self) -> CLTO_W {
645        CLTO_W { w: self }
646    }
647    #[doc = "Bit 16 - SSTOP Interrupt Enable"]
648    #[inline(always)]
649    pub fn sstop(&mut self) -> SSTOP_W {
650        SSTOP_W { w: self }
651    }
652    #[doc = "Bit 17 - RXFULL Interrupt Enable"]
653    #[inline(always)]
654    pub fn rxfull(&mut self) -> RXFULL_W {
655        RXFULL_W { w: self }
656    }
657    #[doc = "Bit 18 - CLERR Interrupt Enable"]
658    #[inline(always)]
659    pub fn clerr(&mut self) -> CLERR_W {
660        CLERR_W { w: self }
661    }
662}