nrf52840_pac/uarte0/
intenclr.rs

1#[doc = "Register `INTENCLR` reader"]
2pub struct R(crate::R<INTENCLR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<INTENCLR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<INTENCLR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<INTENCLR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `INTENCLR` writer"]
17pub struct W(crate::W<INTENCLR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<INTENCLR_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<INTENCLR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<INTENCLR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `CTS` reader - Write '1' to disable interrupt for CTS event"]
38pub type CTS_R = crate::BitReader<CTS_A>;
39#[doc = "Write '1' to disable interrupt for CTS event\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum CTS_A {
42    #[doc = "0: Read: Disabled"]
43    DISABLED = 0,
44    #[doc = "1: Read: Enabled"]
45    ENABLED = 1,
46}
47impl From<CTS_A> for bool {
48    #[inline(always)]
49    fn from(variant: CTS_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl CTS_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> CTS_A {
57        match self.bits {
58            false => CTS_A::DISABLED,
59            true => CTS_A::ENABLED,
60        }
61    }
62    #[doc = "Checks if the value of the field is `DISABLED`"]
63    #[inline(always)]
64    pub fn is_disabled(&self) -> bool {
65        *self == CTS_A::DISABLED
66    }
67    #[doc = "Checks if the value of the field is `ENABLED`"]
68    #[inline(always)]
69    pub fn is_enabled(&self) -> bool {
70        *self == CTS_A::ENABLED
71    }
72}
73#[doc = "Write '1' to disable interrupt for CTS event\n\nValue on reset: 0"]
74#[derive(Clone, Copy, Debug, PartialEq)]
75pub enum CTS_AW {
76    #[doc = "1: Disable"]
77    CLEAR = 1,
78}
79impl From<CTS_AW> for bool {
80    #[inline(always)]
81    fn from(variant: CTS_AW) -> Self {
82        variant as u8 != 0
83    }
84}
85#[doc = "Field `CTS` writer - Write '1' to disable interrupt for CTS event"]
86pub type CTS_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CTS_AW, O>;
87impl<'a, const O: u8> CTS_W<'a, O> {
88    #[doc = "Disable"]
89    #[inline(always)]
90    pub fn clear(self) -> &'a mut W {
91        self.variant(CTS_AW::CLEAR)
92    }
93}
94#[doc = "Field `NCTS` reader - Write '1' to disable interrupt for NCTS event"]
95pub type NCTS_R = crate::BitReader<NCTS_A>;
96#[doc = "Write '1' to disable interrupt for NCTS event\n\nValue on reset: 0"]
97#[derive(Clone, Copy, Debug, PartialEq)]
98pub enum NCTS_A {
99    #[doc = "0: Read: Disabled"]
100    DISABLED = 0,
101    #[doc = "1: Read: Enabled"]
102    ENABLED = 1,
103}
104impl From<NCTS_A> for bool {
105    #[inline(always)]
106    fn from(variant: NCTS_A) -> Self {
107        variant as u8 != 0
108    }
109}
110impl NCTS_R {
111    #[doc = "Get enumerated values variant"]
112    #[inline(always)]
113    pub fn variant(&self) -> NCTS_A {
114        match self.bits {
115            false => NCTS_A::DISABLED,
116            true => NCTS_A::ENABLED,
117        }
118    }
119    #[doc = "Checks if the value of the field is `DISABLED`"]
120    #[inline(always)]
121    pub fn is_disabled(&self) -> bool {
122        *self == NCTS_A::DISABLED
123    }
124    #[doc = "Checks if the value of the field is `ENABLED`"]
125    #[inline(always)]
126    pub fn is_enabled(&self) -> bool {
127        *self == NCTS_A::ENABLED
128    }
129}
130#[doc = "Write '1' to disable interrupt for NCTS event\n\nValue on reset: 0"]
131#[derive(Clone, Copy, Debug, PartialEq)]
132pub enum NCTS_AW {
133    #[doc = "1: Disable"]
134    CLEAR = 1,
135}
136impl From<NCTS_AW> for bool {
137    #[inline(always)]
138    fn from(variant: NCTS_AW) -> Self {
139        variant as u8 != 0
140    }
141}
142#[doc = "Field `NCTS` writer - Write '1' to disable interrupt for NCTS event"]
143pub type NCTS_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, NCTS_AW, O>;
144impl<'a, const O: u8> NCTS_W<'a, O> {
145    #[doc = "Disable"]
146    #[inline(always)]
147    pub fn clear(self) -> &'a mut W {
148        self.variant(NCTS_AW::CLEAR)
149    }
150}
151#[doc = "Field `RXDRDY` reader - Write '1' to disable interrupt for RXDRDY event"]
152pub type RXDRDY_R = crate::BitReader<RXDRDY_A>;
153#[doc = "Write '1' to disable interrupt for RXDRDY event\n\nValue on reset: 0"]
154#[derive(Clone, Copy, Debug, PartialEq)]
155pub enum RXDRDY_A {
156    #[doc = "0: Read: Disabled"]
157    DISABLED = 0,
158    #[doc = "1: Read: Enabled"]
159    ENABLED = 1,
160}
161impl From<RXDRDY_A> for bool {
162    #[inline(always)]
163    fn from(variant: RXDRDY_A) -> Self {
164        variant as u8 != 0
165    }
166}
167impl RXDRDY_R {
168    #[doc = "Get enumerated values variant"]
169    #[inline(always)]
170    pub fn variant(&self) -> RXDRDY_A {
171        match self.bits {
172            false => RXDRDY_A::DISABLED,
173            true => RXDRDY_A::ENABLED,
174        }
175    }
176    #[doc = "Checks if the value of the field is `DISABLED`"]
177    #[inline(always)]
178    pub fn is_disabled(&self) -> bool {
179        *self == RXDRDY_A::DISABLED
180    }
181    #[doc = "Checks if the value of the field is `ENABLED`"]
182    #[inline(always)]
183    pub fn is_enabled(&self) -> bool {
184        *self == RXDRDY_A::ENABLED
185    }
186}
187#[doc = "Write '1' to disable interrupt for RXDRDY event\n\nValue on reset: 0"]
188#[derive(Clone, Copy, Debug, PartialEq)]
189pub enum RXDRDY_AW {
190    #[doc = "1: Disable"]
191    CLEAR = 1,
192}
193impl From<RXDRDY_AW> for bool {
194    #[inline(always)]
195    fn from(variant: RXDRDY_AW) -> Self {
196        variant as u8 != 0
197    }
198}
199#[doc = "Field `RXDRDY` writer - Write '1' to disable interrupt for RXDRDY event"]
200pub type RXDRDY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RXDRDY_AW, O>;
201impl<'a, const O: u8> RXDRDY_W<'a, O> {
202    #[doc = "Disable"]
203    #[inline(always)]
204    pub fn clear(self) -> &'a mut W {
205        self.variant(RXDRDY_AW::CLEAR)
206    }
207}
208#[doc = "Field `ENDRX` reader - Write '1' to disable interrupt for ENDRX event"]
209pub type ENDRX_R = crate::BitReader<ENDRX_A>;
210#[doc = "Write '1' to disable interrupt for ENDRX event\n\nValue on reset: 0"]
211#[derive(Clone, Copy, Debug, PartialEq)]
212pub enum ENDRX_A {
213    #[doc = "0: Read: Disabled"]
214    DISABLED = 0,
215    #[doc = "1: Read: Enabled"]
216    ENABLED = 1,
217}
218impl From<ENDRX_A> for bool {
219    #[inline(always)]
220    fn from(variant: ENDRX_A) -> Self {
221        variant as u8 != 0
222    }
223}
224impl ENDRX_R {
225    #[doc = "Get enumerated values variant"]
226    #[inline(always)]
227    pub fn variant(&self) -> ENDRX_A {
228        match self.bits {
229            false => ENDRX_A::DISABLED,
230            true => ENDRX_A::ENABLED,
231        }
232    }
233    #[doc = "Checks if the value of the field is `DISABLED`"]
234    #[inline(always)]
235    pub fn is_disabled(&self) -> bool {
236        *self == ENDRX_A::DISABLED
237    }
238    #[doc = "Checks if the value of the field is `ENABLED`"]
239    #[inline(always)]
240    pub fn is_enabled(&self) -> bool {
241        *self == ENDRX_A::ENABLED
242    }
243}
244#[doc = "Write '1' to disable interrupt for ENDRX event\n\nValue on reset: 0"]
245#[derive(Clone, Copy, Debug, PartialEq)]
246pub enum ENDRX_AW {
247    #[doc = "1: Disable"]
248    CLEAR = 1,
249}
250impl From<ENDRX_AW> for bool {
251    #[inline(always)]
252    fn from(variant: ENDRX_AW) -> Self {
253        variant as u8 != 0
254    }
255}
256#[doc = "Field `ENDRX` writer - Write '1' to disable interrupt for ENDRX event"]
257pub type ENDRX_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, ENDRX_AW, O>;
258impl<'a, const O: u8> ENDRX_W<'a, O> {
259    #[doc = "Disable"]
260    #[inline(always)]
261    pub fn clear(self) -> &'a mut W {
262        self.variant(ENDRX_AW::CLEAR)
263    }
264}
265#[doc = "Field `TXDRDY` reader - Write '1' to disable interrupt for TXDRDY event"]
266pub type TXDRDY_R = crate::BitReader<TXDRDY_A>;
267#[doc = "Write '1' to disable interrupt for TXDRDY event\n\nValue on reset: 0"]
268#[derive(Clone, Copy, Debug, PartialEq)]
269pub enum TXDRDY_A {
270    #[doc = "0: Read: Disabled"]
271    DISABLED = 0,
272    #[doc = "1: Read: Enabled"]
273    ENABLED = 1,
274}
275impl From<TXDRDY_A> for bool {
276    #[inline(always)]
277    fn from(variant: TXDRDY_A) -> Self {
278        variant as u8 != 0
279    }
280}
281impl TXDRDY_R {
282    #[doc = "Get enumerated values variant"]
283    #[inline(always)]
284    pub fn variant(&self) -> TXDRDY_A {
285        match self.bits {
286            false => TXDRDY_A::DISABLED,
287            true => TXDRDY_A::ENABLED,
288        }
289    }
290    #[doc = "Checks if the value of the field is `DISABLED`"]
291    #[inline(always)]
292    pub fn is_disabled(&self) -> bool {
293        *self == TXDRDY_A::DISABLED
294    }
295    #[doc = "Checks if the value of the field is `ENABLED`"]
296    #[inline(always)]
297    pub fn is_enabled(&self) -> bool {
298        *self == TXDRDY_A::ENABLED
299    }
300}
301#[doc = "Write '1' to disable interrupt for TXDRDY event\n\nValue on reset: 0"]
302#[derive(Clone, Copy, Debug, PartialEq)]
303pub enum TXDRDY_AW {
304    #[doc = "1: Disable"]
305    CLEAR = 1,
306}
307impl From<TXDRDY_AW> for bool {
308    #[inline(always)]
309    fn from(variant: TXDRDY_AW) -> Self {
310        variant as u8 != 0
311    }
312}
313#[doc = "Field `TXDRDY` writer - Write '1' to disable interrupt for TXDRDY event"]
314pub type TXDRDY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, TXDRDY_AW, O>;
315impl<'a, const O: u8> TXDRDY_W<'a, O> {
316    #[doc = "Disable"]
317    #[inline(always)]
318    pub fn clear(self) -> &'a mut W {
319        self.variant(TXDRDY_AW::CLEAR)
320    }
321}
322#[doc = "Field `ENDTX` reader - Write '1' to disable interrupt for ENDTX event"]
323pub type ENDTX_R = crate::BitReader<ENDTX_A>;
324#[doc = "Write '1' to disable interrupt for ENDTX event\n\nValue on reset: 0"]
325#[derive(Clone, Copy, Debug, PartialEq)]
326pub enum ENDTX_A {
327    #[doc = "0: Read: Disabled"]
328    DISABLED = 0,
329    #[doc = "1: Read: Enabled"]
330    ENABLED = 1,
331}
332impl From<ENDTX_A> for bool {
333    #[inline(always)]
334    fn from(variant: ENDTX_A) -> Self {
335        variant as u8 != 0
336    }
337}
338impl ENDTX_R {
339    #[doc = "Get enumerated values variant"]
340    #[inline(always)]
341    pub fn variant(&self) -> ENDTX_A {
342        match self.bits {
343            false => ENDTX_A::DISABLED,
344            true => ENDTX_A::ENABLED,
345        }
346    }
347    #[doc = "Checks if the value of the field is `DISABLED`"]
348    #[inline(always)]
349    pub fn is_disabled(&self) -> bool {
350        *self == ENDTX_A::DISABLED
351    }
352    #[doc = "Checks if the value of the field is `ENABLED`"]
353    #[inline(always)]
354    pub fn is_enabled(&self) -> bool {
355        *self == ENDTX_A::ENABLED
356    }
357}
358#[doc = "Write '1' to disable interrupt for ENDTX event\n\nValue on reset: 0"]
359#[derive(Clone, Copy, Debug, PartialEq)]
360pub enum ENDTX_AW {
361    #[doc = "1: Disable"]
362    CLEAR = 1,
363}
364impl From<ENDTX_AW> for bool {
365    #[inline(always)]
366    fn from(variant: ENDTX_AW) -> Self {
367        variant as u8 != 0
368    }
369}
370#[doc = "Field `ENDTX` writer - Write '1' to disable interrupt for ENDTX event"]
371pub type ENDTX_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, ENDTX_AW, O>;
372impl<'a, const O: u8> ENDTX_W<'a, O> {
373    #[doc = "Disable"]
374    #[inline(always)]
375    pub fn clear(self) -> &'a mut W {
376        self.variant(ENDTX_AW::CLEAR)
377    }
378}
379#[doc = "Field `ERROR` reader - Write '1' to disable interrupt for ERROR event"]
380pub type ERROR_R = crate::BitReader<ERROR_A>;
381#[doc = "Write '1' to disable interrupt for ERROR event\n\nValue on reset: 0"]
382#[derive(Clone, Copy, Debug, PartialEq)]
383pub enum ERROR_A {
384    #[doc = "0: Read: Disabled"]
385    DISABLED = 0,
386    #[doc = "1: Read: Enabled"]
387    ENABLED = 1,
388}
389impl From<ERROR_A> for bool {
390    #[inline(always)]
391    fn from(variant: ERROR_A) -> Self {
392        variant as u8 != 0
393    }
394}
395impl ERROR_R {
396    #[doc = "Get enumerated values variant"]
397    #[inline(always)]
398    pub fn variant(&self) -> ERROR_A {
399        match self.bits {
400            false => ERROR_A::DISABLED,
401            true => ERROR_A::ENABLED,
402        }
403    }
404    #[doc = "Checks if the value of the field is `DISABLED`"]
405    #[inline(always)]
406    pub fn is_disabled(&self) -> bool {
407        *self == ERROR_A::DISABLED
408    }
409    #[doc = "Checks if the value of the field is `ENABLED`"]
410    #[inline(always)]
411    pub fn is_enabled(&self) -> bool {
412        *self == ERROR_A::ENABLED
413    }
414}
415#[doc = "Write '1' to disable interrupt for ERROR event\n\nValue on reset: 0"]
416#[derive(Clone, Copy, Debug, PartialEq)]
417pub enum ERROR_AW {
418    #[doc = "1: Disable"]
419    CLEAR = 1,
420}
421impl From<ERROR_AW> for bool {
422    #[inline(always)]
423    fn from(variant: ERROR_AW) -> Self {
424        variant as u8 != 0
425    }
426}
427#[doc = "Field `ERROR` writer - Write '1' to disable interrupt for ERROR event"]
428pub type ERROR_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, ERROR_AW, O>;
429impl<'a, const O: u8> ERROR_W<'a, O> {
430    #[doc = "Disable"]
431    #[inline(always)]
432    pub fn clear(self) -> &'a mut W {
433        self.variant(ERROR_AW::CLEAR)
434    }
435}
436#[doc = "Field `RXTO` reader - Write '1' to disable interrupt for RXTO event"]
437pub type RXTO_R = crate::BitReader<RXTO_A>;
438#[doc = "Write '1' to disable interrupt for RXTO event\n\nValue on reset: 0"]
439#[derive(Clone, Copy, Debug, PartialEq)]
440pub enum RXTO_A {
441    #[doc = "0: Read: Disabled"]
442    DISABLED = 0,
443    #[doc = "1: Read: Enabled"]
444    ENABLED = 1,
445}
446impl From<RXTO_A> for bool {
447    #[inline(always)]
448    fn from(variant: RXTO_A) -> Self {
449        variant as u8 != 0
450    }
451}
452impl RXTO_R {
453    #[doc = "Get enumerated values variant"]
454    #[inline(always)]
455    pub fn variant(&self) -> RXTO_A {
456        match self.bits {
457            false => RXTO_A::DISABLED,
458            true => RXTO_A::ENABLED,
459        }
460    }
461    #[doc = "Checks if the value of the field is `DISABLED`"]
462    #[inline(always)]
463    pub fn is_disabled(&self) -> bool {
464        *self == RXTO_A::DISABLED
465    }
466    #[doc = "Checks if the value of the field is `ENABLED`"]
467    #[inline(always)]
468    pub fn is_enabled(&self) -> bool {
469        *self == RXTO_A::ENABLED
470    }
471}
472#[doc = "Write '1' to disable interrupt for RXTO event\n\nValue on reset: 0"]
473#[derive(Clone, Copy, Debug, PartialEq)]
474pub enum RXTO_AW {
475    #[doc = "1: Disable"]
476    CLEAR = 1,
477}
478impl From<RXTO_AW> for bool {
479    #[inline(always)]
480    fn from(variant: RXTO_AW) -> Self {
481        variant as u8 != 0
482    }
483}
484#[doc = "Field `RXTO` writer - Write '1' to disable interrupt for RXTO event"]
485pub type RXTO_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RXTO_AW, O>;
486impl<'a, const O: u8> RXTO_W<'a, O> {
487    #[doc = "Disable"]
488    #[inline(always)]
489    pub fn clear(self) -> &'a mut W {
490        self.variant(RXTO_AW::CLEAR)
491    }
492}
493#[doc = "Field `RXSTARTED` reader - Write '1' to disable interrupt for RXSTARTED event"]
494pub type RXSTARTED_R = crate::BitReader<RXSTARTED_A>;
495#[doc = "Write '1' to disable interrupt for RXSTARTED event\n\nValue on reset: 0"]
496#[derive(Clone, Copy, Debug, PartialEq)]
497pub enum RXSTARTED_A {
498    #[doc = "0: Read: Disabled"]
499    DISABLED = 0,
500    #[doc = "1: Read: Enabled"]
501    ENABLED = 1,
502}
503impl From<RXSTARTED_A> for bool {
504    #[inline(always)]
505    fn from(variant: RXSTARTED_A) -> Self {
506        variant as u8 != 0
507    }
508}
509impl RXSTARTED_R {
510    #[doc = "Get enumerated values variant"]
511    #[inline(always)]
512    pub fn variant(&self) -> RXSTARTED_A {
513        match self.bits {
514            false => RXSTARTED_A::DISABLED,
515            true => RXSTARTED_A::ENABLED,
516        }
517    }
518    #[doc = "Checks if the value of the field is `DISABLED`"]
519    #[inline(always)]
520    pub fn is_disabled(&self) -> bool {
521        *self == RXSTARTED_A::DISABLED
522    }
523    #[doc = "Checks if the value of the field is `ENABLED`"]
524    #[inline(always)]
525    pub fn is_enabled(&self) -> bool {
526        *self == RXSTARTED_A::ENABLED
527    }
528}
529#[doc = "Write '1' to disable interrupt for RXSTARTED event\n\nValue on reset: 0"]
530#[derive(Clone, Copy, Debug, PartialEq)]
531pub enum RXSTARTED_AW {
532    #[doc = "1: Disable"]
533    CLEAR = 1,
534}
535impl From<RXSTARTED_AW> for bool {
536    #[inline(always)]
537    fn from(variant: RXSTARTED_AW) -> Self {
538        variant as u8 != 0
539    }
540}
541#[doc = "Field `RXSTARTED` writer - Write '1' to disable interrupt for RXSTARTED event"]
542pub type RXSTARTED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RXSTARTED_AW, O>;
543impl<'a, const O: u8> RXSTARTED_W<'a, O> {
544    #[doc = "Disable"]
545    #[inline(always)]
546    pub fn clear(self) -> &'a mut W {
547        self.variant(RXSTARTED_AW::CLEAR)
548    }
549}
550#[doc = "Field `TXSTARTED` reader - Write '1' to disable interrupt for TXSTARTED event"]
551pub type TXSTARTED_R = crate::BitReader<TXSTARTED_A>;
552#[doc = "Write '1' to disable interrupt for TXSTARTED event\n\nValue on reset: 0"]
553#[derive(Clone, Copy, Debug, PartialEq)]
554pub enum TXSTARTED_A {
555    #[doc = "0: Read: Disabled"]
556    DISABLED = 0,
557    #[doc = "1: Read: Enabled"]
558    ENABLED = 1,
559}
560impl From<TXSTARTED_A> for bool {
561    #[inline(always)]
562    fn from(variant: TXSTARTED_A) -> Self {
563        variant as u8 != 0
564    }
565}
566impl TXSTARTED_R {
567    #[doc = "Get enumerated values variant"]
568    #[inline(always)]
569    pub fn variant(&self) -> TXSTARTED_A {
570        match self.bits {
571            false => TXSTARTED_A::DISABLED,
572            true => TXSTARTED_A::ENABLED,
573        }
574    }
575    #[doc = "Checks if the value of the field is `DISABLED`"]
576    #[inline(always)]
577    pub fn is_disabled(&self) -> bool {
578        *self == TXSTARTED_A::DISABLED
579    }
580    #[doc = "Checks if the value of the field is `ENABLED`"]
581    #[inline(always)]
582    pub fn is_enabled(&self) -> bool {
583        *self == TXSTARTED_A::ENABLED
584    }
585}
586#[doc = "Write '1' to disable interrupt for TXSTARTED event\n\nValue on reset: 0"]
587#[derive(Clone, Copy, Debug, PartialEq)]
588pub enum TXSTARTED_AW {
589    #[doc = "1: Disable"]
590    CLEAR = 1,
591}
592impl From<TXSTARTED_AW> for bool {
593    #[inline(always)]
594    fn from(variant: TXSTARTED_AW) -> Self {
595        variant as u8 != 0
596    }
597}
598#[doc = "Field `TXSTARTED` writer - Write '1' to disable interrupt for TXSTARTED event"]
599pub type TXSTARTED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, TXSTARTED_AW, O>;
600impl<'a, const O: u8> TXSTARTED_W<'a, O> {
601    #[doc = "Disable"]
602    #[inline(always)]
603    pub fn clear(self) -> &'a mut W {
604        self.variant(TXSTARTED_AW::CLEAR)
605    }
606}
607#[doc = "Field `TXSTOPPED` reader - Write '1' to disable interrupt for TXSTOPPED event"]
608pub type TXSTOPPED_R = crate::BitReader<TXSTOPPED_A>;
609#[doc = "Write '1' to disable interrupt for TXSTOPPED event\n\nValue on reset: 0"]
610#[derive(Clone, Copy, Debug, PartialEq)]
611pub enum TXSTOPPED_A {
612    #[doc = "0: Read: Disabled"]
613    DISABLED = 0,
614    #[doc = "1: Read: Enabled"]
615    ENABLED = 1,
616}
617impl From<TXSTOPPED_A> for bool {
618    #[inline(always)]
619    fn from(variant: TXSTOPPED_A) -> Self {
620        variant as u8 != 0
621    }
622}
623impl TXSTOPPED_R {
624    #[doc = "Get enumerated values variant"]
625    #[inline(always)]
626    pub fn variant(&self) -> TXSTOPPED_A {
627        match self.bits {
628            false => TXSTOPPED_A::DISABLED,
629            true => TXSTOPPED_A::ENABLED,
630        }
631    }
632    #[doc = "Checks if the value of the field is `DISABLED`"]
633    #[inline(always)]
634    pub fn is_disabled(&self) -> bool {
635        *self == TXSTOPPED_A::DISABLED
636    }
637    #[doc = "Checks if the value of the field is `ENABLED`"]
638    #[inline(always)]
639    pub fn is_enabled(&self) -> bool {
640        *self == TXSTOPPED_A::ENABLED
641    }
642}
643#[doc = "Write '1' to disable interrupt for TXSTOPPED event\n\nValue on reset: 0"]
644#[derive(Clone, Copy, Debug, PartialEq)]
645pub enum TXSTOPPED_AW {
646    #[doc = "1: Disable"]
647    CLEAR = 1,
648}
649impl From<TXSTOPPED_AW> for bool {
650    #[inline(always)]
651    fn from(variant: TXSTOPPED_AW) -> Self {
652        variant as u8 != 0
653    }
654}
655#[doc = "Field `TXSTOPPED` writer - Write '1' to disable interrupt for TXSTOPPED event"]
656pub type TXSTOPPED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, TXSTOPPED_AW, O>;
657impl<'a, const O: u8> TXSTOPPED_W<'a, O> {
658    #[doc = "Disable"]
659    #[inline(always)]
660    pub fn clear(self) -> &'a mut W {
661        self.variant(TXSTOPPED_AW::CLEAR)
662    }
663}
664impl R {
665    #[doc = "Bit 0 - Write '1' to disable interrupt for CTS event"]
666    #[inline(always)]
667    pub fn cts(&self) -> CTS_R {
668        CTS_R::new((self.bits & 1) != 0)
669    }
670    #[doc = "Bit 1 - Write '1' to disable interrupt for NCTS event"]
671    #[inline(always)]
672    pub fn ncts(&self) -> NCTS_R {
673        NCTS_R::new(((self.bits >> 1) & 1) != 0)
674    }
675    #[doc = "Bit 2 - Write '1' to disable interrupt for RXDRDY event"]
676    #[inline(always)]
677    pub fn rxdrdy(&self) -> RXDRDY_R {
678        RXDRDY_R::new(((self.bits >> 2) & 1) != 0)
679    }
680    #[doc = "Bit 4 - Write '1' to disable interrupt for ENDRX event"]
681    #[inline(always)]
682    pub fn endrx(&self) -> ENDRX_R {
683        ENDRX_R::new(((self.bits >> 4) & 1) != 0)
684    }
685    #[doc = "Bit 7 - Write '1' to disable interrupt for TXDRDY event"]
686    #[inline(always)]
687    pub fn txdrdy(&self) -> TXDRDY_R {
688        TXDRDY_R::new(((self.bits >> 7) & 1) != 0)
689    }
690    #[doc = "Bit 8 - Write '1' to disable interrupt for ENDTX event"]
691    #[inline(always)]
692    pub fn endtx(&self) -> ENDTX_R {
693        ENDTX_R::new(((self.bits >> 8) & 1) != 0)
694    }
695    #[doc = "Bit 9 - Write '1' to disable interrupt for ERROR event"]
696    #[inline(always)]
697    pub fn error(&self) -> ERROR_R {
698        ERROR_R::new(((self.bits >> 9) & 1) != 0)
699    }
700    #[doc = "Bit 17 - Write '1' to disable interrupt for RXTO event"]
701    #[inline(always)]
702    pub fn rxto(&self) -> RXTO_R {
703        RXTO_R::new(((self.bits >> 17) & 1) != 0)
704    }
705    #[doc = "Bit 19 - Write '1' to disable interrupt for RXSTARTED event"]
706    #[inline(always)]
707    pub fn rxstarted(&self) -> RXSTARTED_R {
708        RXSTARTED_R::new(((self.bits >> 19) & 1) != 0)
709    }
710    #[doc = "Bit 20 - Write '1' to disable interrupt for TXSTARTED event"]
711    #[inline(always)]
712    pub fn txstarted(&self) -> TXSTARTED_R {
713        TXSTARTED_R::new(((self.bits >> 20) & 1) != 0)
714    }
715    #[doc = "Bit 22 - Write '1' to disable interrupt for TXSTOPPED event"]
716    #[inline(always)]
717    pub fn txstopped(&self) -> TXSTOPPED_R {
718        TXSTOPPED_R::new(((self.bits >> 22) & 1) != 0)
719    }
720}
721impl W {
722    #[doc = "Bit 0 - Write '1' to disable interrupt for CTS event"]
723    #[inline(always)]
724    pub fn cts(&mut self) -> CTS_W<0> {
725        CTS_W::new(self)
726    }
727    #[doc = "Bit 1 - Write '1' to disable interrupt for NCTS event"]
728    #[inline(always)]
729    pub fn ncts(&mut self) -> NCTS_W<1> {
730        NCTS_W::new(self)
731    }
732    #[doc = "Bit 2 - Write '1' to disable interrupt for RXDRDY event"]
733    #[inline(always)]
734    pub fn rxdrdy(&mut self) -> RXDRDY_W<2> {
735        RXDRDY_W::new(self)
736    }
737    #[doc = "Bit 4 - Write '1' to disable interrupt for ENDRX event"]
738    #[inline(always)]
739    pub fn endrx(&mut self) -> ENDRX_W<4> {
740        ENDRX_W::new(self)
741    }
742    #[doc = "Bit 7 - Write '1' to disable interrupt for TXDRDY event"]
743    #[inline(always)]
744    pub fn txdrdy(&mut self) -> TXDRDY_W<7> {
745        TXDRDY_W::new(self)
746    }
747    #[doc = "Bit 8 - Write '1' to disable interrupt for ENDTX event"]
748    #[inline(always)]
749    pub fn endtx(&mut self) -> ENDTX_W<8> {
750        ENDTX_W::new(self)
751    }
752    #[doc = "Bit 9 - Write '1' to disable interrupt for ERROR event"]
753    #[inline(always)]
754    pub fn error(&mut self) -> ERROR_W<9> {
755        ERROR_W::new(self)
756    }
757    #[doc = "Bit 17 - Write '1' to disable interrupt for RXTO event"]
758    #[inline(always)]
759    pub fn rxto(&mut self) -> RXTO_W<17> {
760        RXTO_W::new(self)
761    }
762    #[doc = "Bit 19 - Write '1' to disable interrupt for RXSTARTED event"]
763    #[inline(always)]
764    pub fn rxstarted(&mut self) -> RXSTARTED_W<19> {
765        RXSTARTED_W::new(self)
766    }
767    #[doc = "Bit 20 - Write '1' to disable interrupt for TXSTARTED event"]
768    #[inline(always)]
769    pub fn txstarted(&mut self) -> TXSTARTED_W<20> {
770        TXSTARTED_W::new(self)
771    }
772    #[doc = "Bit 22 - Write '1' to disable interrupt for TXSTOPPED event"]
773    #[inline(always)]
774    pub fn txstopped(&mut self) -> TXSTOPPED_W<22> {
775        TXSTOPPED_W::new(self)
776    }
777    #[doc = "Writes raw bits to the register."]
778    #[inline(always)]
779    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
780        self.0.bits(bits);
781        self
782    }
783}
784#[doc = "Disable interrupt\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 [intenclr](index.html) module"]
785pub struct INTENCLR_SPEC;
786impl crate::RegisterSpec for INTENCLR_SPEC {
787    type Ux = u32;
788}
789#[doc = "`read()` method returns [intenclr::R](R) reader structure"]
790impl crate::Readable for INTENCLR_SPEC {
791    type Reader = R;
792}
793#[doc = "`write(|w| ..)` method takes [intenclr::W](W) writer structure"]
794impl crate::Writable for INTENCLR_SPEC {
795    type Writer = W;
796}
797#[doc = "`reset()` method sets INTENCLR to value 0"]
798impl crate::Resettable for INTENCLR_SPEC {
799    #[inline(always)]
800    fn reset_value() -> Self::Ux {
801        0
802    }
803}