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 `READY` reader - Write '1' to disable interrupt for READY event"]
38pub type READY_R = crate::BitReader<READY_A>;
39#[doc = "Write '1' to disable interrupt for READY event\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum READY_A {
42 #[doc = "0: Read: Disabled"]
43 DISABLED = 0,
44 #[doc = "1: Read: Enabled"]
45 ENABLED = 1,
46}
47impl From<READY_A> for bool {
48 #[inline(always)]
49 fn from(variant: READY_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl READY_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> READY_A {
57 match self.bits {
58 false => READY_A::DISABLED,
59 true => READY_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 == READY_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 == READY_A::ENABLED
71 }
72}
73#[doc = "Write '1' to disable interrupt for READY event\n\nValue on reset: 0"]
74#[derive(Clone, Copy, Debug, PartialEq)]
75pub enum READY_AW {
76 #[doc = "1: Disable"]
77 CLEAR = 1,
78}
79impl From<READY_AW> for bool {
80 #[inline(always)]
81 fn from(variant: READY_AW) -> Self {
82 variant as u8 != 0
83 }
84}
85#[doc = "Field `READY` writer - Write '1' to disable interrupt for READY event"]
86pub type READY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, READY_AW, O>;
87impl<'a, const O: u8> READY_W<'a, O> {
88 #[doc = "Disable"]
89 #[inline(always)]
90 pub fn clear(self) -> &'a mut W {
91 self.variant(READY_AW::CLEAR)
92 }
93}
94#[doc = "Field `ADDRESS` reader - Write '1' to disable interrupt for ADDRESS event"]
95pub type ADDRESS_R = crate::BitReader<ADDRESS_A>;
96#[doc = "Write '1' to disable interrupt for ADDRESS event\n\nValue on reset: 0"]
97#[derive(Clone, Copy, Debug, PartialEq)]
98pub enum ADDRESS_A {
99 #[doc = "0: Read: Disabled"]
100 DISABLED = 0,
101 #[doc = "1: Read: Enabled"]
102 ENABLED = 1,
103}
104impl From<ADDRESS_A> for bool {
105 #[inline(always)]
106 fn from(variant: ADDRESS_A) -> Self {
107 variant as u8 != 0
108 }
109}
110impl ADDRESS_R {
111 #[doc = "Get enumerated values variant"]
112 #[inline(always)]
113 pub fn variant(&self) -> ADDRESS_A {
114 match self.bits {
115 false => ADDRESS_A::DISABLED,
116 true => ADDRESS_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 == ADDRESS_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 == ADDRESS_A::ENABLED
128 }
129}
130#[doc = "Write '1' to disable interrupt for ADDRESS event\n\nValue on reset: 0"]
131#[derive(Clone, Copy, Debug, PartialEq)]
132pub enum ADDRESS_AW {
133 #[doc = "1: Disable"]
134 CLEAR = 1,
135}
136impl From<ADDRESS_AW> for bool {
137 #[inline(always)]
138 fn from(variant: ADDRESS_AW) -> Self {
139 variant as u8 != 0
140 }
141}
142#[doc = "Field `ADDRESS` writer - Write '1' to disable interrupt for ADDRESS event"]
143pub type ADDRESS_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, ADDRESS_AW, O>;
144impl<'a, const O: u8> ADDRESS_W<'a, O> {
145 #[doc = "Disable"]
146 #[inline(always)]
147 pub fn clear(self) -> &'a mut W {
148 self.variant(ADDRESS_AW::CLEAR)
149 }
150}
151#[doc = "Field `PAYLOAD` reader - Write '1' to disable interrupt for PAYLOAD event"]
152pub type PAYLOAD_R = crate::BitReader<PAYLOAD_A>;
153#[doc = "Write '1' to disable interrupt for PAYLOAD event\n\nValue on reset: 0"]
154#[derive(Clone, Copy, Debug, PartialEq)]
155pub enum PAYLOAD_A {
156 #[doc = "0: Read: Disabled"]
157 DISABLED = 0,
158 #[doc = "1: Read: Enabled"]
159 ENABLED = 1,
160}
161impl From<PAYLOAD_A> for bool {
162 #[inline(always)]
163 fn from(variant: PAYLOAD_A) -> Self {
164 variant as u8 != 0
165 }
166}
167impl PAYLOAD_R {
168 #[doc = "Get enumerated values variant"]
169 #[inline(always)]
170 pub fn variant(&self) -> PAYLOAD_A {
171 match self.bits {
172 false => PAYLOAD_A::DISABLED,
173 true => PAYLOAD_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 == PAYLOAD_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 == PAYLOAD_A::ENABLED
185 }
186}
187#[doc = "Write '1' to disable interrupt for PAYLOAD event\n\nValue on reset: 0"]
188#[derive(Clone, Copy, Debug, PartialEq)]
189pub enum PAYLOAD_AW {
190 #[doc = "1: Disable"]
191 CLEAR = 1,
192}
193impl From<PAYLOAD_AW> for bool {
194 #[inline(always)]
195 fn from(variant: PAYLOAD_AW) -> Self {
196 variant as u8 != 0
197 }
198}
199#[doc = "Field `PAYLOAD` writer - Write '1' to disable interrupt for PAYLOAD event"]
200pub type PAYLOAD_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, PAYLOAD_AW, O>;
201impl<'a, const O: u8> PAYLOAD_W<'a, O> {
202 #[doc = "Disable"]
203 #[inline(always)]
204 pub fn clear(self) -> &'a mut W {
205 self.variant(PAYLOAD_AW::CLEAR)
206 }
207}
208#[doc = "Field `END` reader - Write '1' to disable interrupt for END event"]
209pub type END_R = crate::BitReader<END_A>;
210#[doc = "Write '1' to disable interrupt for END event\n\nValue on reset: 0"]
211#[derive(Clone, Copy, Debug, PartialEq)]
212pub enum END_A {
213 #[doc = "0: Read: Disabled"]
214 DISABLED = 0,
215 #[doc = "1: Read: Enabled"]
216 ENABLED = 1,
217}
218impl From<END_A> for bool {
219 #[inline(always)]
220 fn from(variant: END_A) -> Self {
221 variant as u8 != 0
222 }
223}
224impl END_R {
225 #[doc = "Get enumerated values variant"]
226 #[inline(always)]
227 pub fn variant(&self) -> END_A {
228 match self.bits {
229 false => END_A::DISABLED,
230 true => END_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 == END_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 == END_A::ENABLED
242 }
243}
244#[doc = "Write '1' to disable interrupt for END event\n\nValue on reset: 0"]
245#[derive(Clone, Copy, Debug, PartialEq)]
246pub enum END_AW {
247 #[doc = "1: Disable"]
248 CLEAR = 1,
249}
250impl From<END_AW> for bool {
251 #[inline(always)]
252 fn from(variant: END_AW) -> Self {
253 variant as u8 != 0
254 }
255}
256#[doc = "Field `END` writer - Write '1' to disable interrupt for END event"]
257pub type END_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, END_AW, O>;
258impl<'a, const O: u8> END_W<'a, O> {
259 #[doc = "Disable"]
260 #[inline(always)]
261 pub fn clear(self) -> &'a mut W {
262 self.variant(END_AW::CLEAR)
263 }
264}
265#[doc = "Field `DISABLED` reader - Write '1' to disable interrupt for DISABLED event"]
266pub type DISABLED_R = crate::BitReader<DISABLED_A>;
267#[doc = "Write '1' to disable interrupt for DISABLED event\n\nValue on reset: 0"]
268#[derive(Clone, Copy, Debug, PartialEq)]
269pub enum DISABLED_A {
270 #[doc = "0: Read: Disabled"]
271 DISABLED = 0,
272 #[doc = "1: Read: Enabled"]
273 ENABLED = 1,
274}
275impl From<DISABLED_A> for bool {
276 #[inline(always)]
277 fn from(variant: DISABLED_A) -> Self {
278 variant as u8 != 0
279 }
280}
281impl DISABLED_R {
282 #[doc = "Get enumerated values variant"]
283 #[inline(always)]
284 pub fn variant(&self) -> DISABLED_A {
285 match self.bits {
286 false => DISABLED_A::DISABLED,
287 true => DISABLED_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 == DISABLED_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 == DISABLED_A::ENABLED
299 }
300}
301#[doc = "Write '1' to disable interrupt for DISABLED event\n\nValue on reset: 0"]
302#[derive(Clone, Copy, Debug, PartialEq)]
303pub enum DISABLED_AW {
304 #[doc = "1: Disable"]
305 CLEAR = 1,
306}
307impl From<DISABLED_AW> for bool {
308 #[inline(always)]
309 fn from(variant: DISABLED_AW) -> Self {
310 variant as u8 != 0
311 }
312}
313#[doc = "Field `DISABLED` writer - Write '1' to disable interrupt for DISABLED event"]
314pub type DISABLED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, DISABLED_AW, O>;
315impl<'a, const O: u8> DISABLED_W<'a, O> {
316 #[doc = "Disable"]
317 #[inline(always)]
318 pub fn clear(self) -> &'a mut W {
319 self.variant(DISABLED_AW::CLEAR)
320 }
321}
322#[doc = "Field `DEVMATCH` reader - Write '1' to disable interrupt for DEVMATCH event"]
323pub type DEVMATCH_R = crate::BitReader<DEVMATCH_A>;
324#[doc = "Write '1' to disable interrupt for DEVMATCH event\n\nValue on reset: 0"]
325#[derive(Clone, Copy, Debug, PartialEq)]
326pub enum DEVMATCH_A {
327 #[doc = "0: Read: Disabled"]
328 DISABLED = 0,
329 #[doc = "1: Read: Enabled"]
330 ENABLED = 1,
331}
332impl From<DEVMATCH_A> for bool {
333 #[inline(always)]
334 fn from(variant: DEVMATCH_A) -> Self {
335 variant as u8 != 0
336 }
337}
338impl DEVMATCH_R {
339 #[doc = "Get enumerated values variant"]
340 #[inline(always)]
341 pub fn variant(&self) -> DEVMATCH_A {
342 match self.bits {
343 false => DEVMATCH_A::DISABLED,
344 true => DEVMATCH_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 == DEVMATCH_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 == DEVMATCH_A::ENABLED
356 }
357}
358#[doc = "Write '1' to disable interrupt for DEVMATCH event\n\nValue on reset: 0"]
359#[derive(Clone, Copy, Debug, PartialEq)]
360pub enum DEVMATCH_AW {
361 #[doc = "1: Disable"]
362 CLEAR = 1,
363}
364impl From<DEVMATCH_AW> for bool {
365 #[inline(always)]
366 fn from(variant: DEVMATCH_AW) -> Self {
367 variant as u8 != 0
368 }
369}
370#[doc = "Field `DEVMATCH` writer - Write '1' to disable interrupt for DEVMATCH event"]
371pub type DEVMATCH_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, DEVMATCH_AW, O>;
372impl<'a, const O: u8> DEVMATCH_W<'a, O> {
373 #[doc = "Disable"]
374 #[inline(always)]
375 pub fn clear(self) -> &'a mut W {
376 self.variant(DEVMATCH_AW::CLEAR)
377 }
378}
379#[doc = "Field `DEVMISS` reader - Write '1' to disable interrupt for DEVMISS event"]
380pub type DEVMISS_R = crate::BitReader<DEVMISS_A>;
381#[doc = "Write '1' to disable interrupt for DEVMISS event\n\nValue on reset: 0"]
382#[derive(Clone, Copy, Debug, PartialEq)]
383pub enum DEVMISS_A {
384 #[doc = "0: Read: Disabled"]
385 DISABLED = 0,
386 #[doc = "1: Read: Enabled"]
387 ENABLED = 1,
388}
389impl From<DEVMISS_A> for bool {
390 #[inline(always)]
391 fn from(variant: DEVMISS_A) -> Self {
392 variant as u8 != 0
393 }
394}
395impl DEVMISS_R {
396 #[doc = "Get enumerated values variant"]
397 #[inline(always)]
398 pub fn variant(&self) -> DEVMISS_A {
399 match self.bits {
400 false => DEVMISS_A::DISABLED,
401 true => DEVMISS_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 == DEVMISS_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 == DEVMISS_A::ENABLED
413 }
414}
415#[doc = "Write '1' to disable interrupt for DEVMISS event\n\nValue on reset: 0"]
416#[derive(Clone, Copy, Debug, PartialEq)]
417pub enum DEVMISS_AW {
418 #[doc = "1: Disable"]
419 CLEAR = 1,
420}
421impl From<DEVMISS_AW> for bool {
422 #[inline(always)]
423 fn from(variant: DEVMISS_AW) -> Self {
424 variant as u8 != 0
425 }
426}
427#[doc = "Field `DEVMISS` writer - Write '1' to disable interrupt for DEVMISS event"]
428pub type DEVMISS_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, DEVMISS_AW, O>;
429impl<'a, const O: u8> DEVMISS_W<'a, O> {
430 #[doc = "Disable"]
431 #[inline(always)]
432 pub fn clear(self) -> &'a mut W {
433 self.variant(DEVMISS_AW::CLEAR)
434 }
435}
436#[doc = "Field `RSSIEND` reader - Write '1' to disable interrupt for RSSIEND event"]
437pub type RSSIEND_R = crate::BitReader<RSSIEND_A>;
438#[doc = "Write '1' to disable interrupt for RSSIEND event\n\nValue on reset: 0"]
439#[derive(Clone, Copy, Debug, PartialEq)]
440pub enum RSSIEND_A {
441 #[doc = "0: Read: Disabled"]
442 DISABLED = 0,
443 #[doc = "1: Read: Enabled"]
444 ENABLED = 1,
445}
446impl From<RSSIEND_A> for bool {
447 #[inline(always)]
448 fn from(variant: RSSIEND_A) -> Self {
449 variant as u8 != 0
450 }
451}
452impl RSSIEND_R {
453 #[doc = "Get enumerated values variant"]
454 #[inline(always)]
455 pub fn variant(&self) -> RSSIEND_A {
456 match self.bits {
457 false => RSSIEND_A::DISABLED,
458 true => RSSIEND_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 == RSSIEND_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 == RSSIEND_A::ENABLED
470 }
471}
472#[doc = "Write '1' to disable interrupt for RSSIEND event\n\nValue on reset: 0"]
473#[derive(Clone, Copy, Debug, PartialEq)]
474pub enum RSSIEND_AW {
475 #[doc = "1: Disable"]
476 CLEAR = 1,
477}
478impl From<RSSIEND_AW> for bool {
479 #[inline(always)]
480 fn from(variant: RSSIEND_AW) -> Self {
481 variant as u8 != 0
482 }
483}
484#[doc = "Field `RSSIEND` writer - Write '1' to disable interrupt for RSSIEND event"]
485pub type RSSIEND_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RSSIEND_AW, O>;
486impl<'a, const O: u8> RSSIEND_W<'a, O> {
487 #[doc = "Disable"]
488 #[inline(always)]
489 pub fn clear(self) -> &'a mut W {
490 self.variant(RSSIEND_AW::CLEAR)
491 }
492}
493#[doc = "Field `BCMATCH` reader - Write '1' to disable interrupt for BCMATCH event"]
494pub type BCMATCH_R = crate::BitReader<BCMATCH_A>;
495#[doc = "Write '1' to disable interrupt for BCMATCH event\n\nValue on reset: 0"]
496#[derive(Clone, Copy, Debug, PartialEq)]
497pub enum BCMATCH_A {
498 #[doc = "0: Read: Disabled"]
499 DISABLED = 0,
500 #[doc = "1: Read: Enabled"]
501 ENABLED = 1,
502}
503impl From<BCMATCH_A> for bool {
504 #[inline(always)]
505 fn from(variant: BCMATCH_A) -> Self {
506 variant as u8 != 0
507 }
508}
509impl BCMATCH_R {
510 #[doc = "Get enumerated values variant"]
511 #[inline(always)]
512 pub fn variant(&self) -> BCMATCH_A {
513 match self.bits {
514 false => BCMATCH_A::DISABLED,
515 true => BCMATCH_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 == BCMATCH_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 == BCMATCH_A::ENABLED
527 }
528}
529#[doc = "Write '1' to disable interrupt for BCMATCH event\n\nValue on reset: 0"]
530#[derive(Clone, Copy, Debug, PartialEq)]
531pub enum BCMATCH_AW {
532 #[doc = "1: Disable"]
533 CLEAR = 1,
534}
535impl From<BCMATCH_AW> for bool {
536 #[inline(always)]
537 fn from(variant: BCMATCH_AW) -> Self {
538 variant as u8 != 0
539 }
540}
541#[doc = "Field `BCMATCH` writer - Write '1' to disable interrupt for BCMATCH event"]
542pub type BCMATCH_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, BCMATCH_AW, O>;
543impl<'a, const O: u8> BCMATCH_W<'a, O> {
544 #[doc = "Disable"]
545 #[inline(always)]
546 pub fn clear(self) -> &'a mut W {
547 self.variant(BCMATCH_AW::CLEAR)
548 }
549}
550#[doc = "Field `CRCOK` reader - Write '1' to disable interrupt for CRCOK event"]
551pub type CRCOK_R = crate::BitReader<CRCOK_A>;
552#[doc = "Write '1' to disable interrupt for CRCOK event\n\nValue on reset: 0"]
553#[derive(Clone, Copy, Debug, PartialEq)]
554pub enum CRCOK_A {
555 #[doc = "0: Read: Disabled"]
556 DISABLED = 0,
557 #[doc = "1: Read: Enabled"]
558 ENABLED = 1,
559}
560impl From<CRCOK_A> for bool {
561 #[inline(always)]
562 fn from(variant: CRCOK_A) -> Self {
563 variant as u8 != 0
564 }
565}
566impl CRCOK_R {
567 #[doc = "Get enumerated values variant"]
568 #[inline(always)]
569 pub fn variant(&self) -> CRCOK_A {
570 match self.bits {
571 false => CRCOK_A::DISABLED,
572 true => CRCOK_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 == CRCOK_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 == CRCOK_A::ENABLED
584 }
585}
586#[doc = "Write '1' to disable interrupt for CRCOK event\n\nValue on reset: 0"]
587#[derive(Clone, Copy, Debug, PartialEq)]
588pub enum CRCOK_AW {
589 #[doc = "1: Disable"]
590 CLEAR = 1,
591}
592impl From<CRCOK_AW> for bool {
593 #[inline(always)]
594 fn from(variant: CRCOK_AW) -> Self {
595 variant as u8 != 0
596 }
597}
598#[doc = "Field `CRCOK` writer - Write '1' to disable interrupt for CRCOK event"]
599pub type CRCOK_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CRCOK_AW, O>;
600impl<'a, const O: u8> CRCOK_W<'a, O> {
601 #[doc = "Disable"]
602 #[inline(always)]
603 pub fn clear(self) -> &'a mut W {
604 self.variant(CRCOK_AW::CLEAR)
605 }
606}
607#[doc = "Field `CRCERROR` reader - Write '1' to disable interrupt for CRCERROR event"]
608pub type CRCERROR_R = crate::BitReader<CRCERROR_A>;
609#[doc = "Write '1' to disable interrupt for CRCERROR event\n\nValue on reset: 0"]
610#[derive(Clone, Copy, Debug, PartialEq)]
611pub enum CRCERROR_A {
612 #[doc = "0: Read: Disabled"]
613 DISABLED = 0,
614 #[doc = "1: Read: Enabled"]
615 ENABLED = 1,
616}
617impl From<CRCERROR_A> for bool {
618 #[inline(always)]
619 fn from(variant: CRCERROR_A) -> Self {
620 variant as u8 != 0
621 }
622}
623impl CRCERROR_R {
624 #[doc = "Get enumerated values variant"]
625 #[inline(always)]
626 pub fn variant(&self) -> CRCERROR_A {
627 match self.bits {
628 false => CRCERROR_A::DISABLED,
629 true => CRCERROR_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 == CRCERROR_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 == CRCERROR_A::ENABLED
641 }
642}
643#[doc = "Write '1' to disable interrupt for CRCERROR event\n\nValue on reset: 0"]
644#[derive(Clone, Copy, Debug, PartialEq)]
645pub enum CRCERROR_AW {
646 #[doc = "1: Disable"]
647 CLEAR = 1,
648}
649impl From<CRCERROR_AW> for bool {
650 #[inline(always)]
651 fn from(variant: CRCERROR_AW) -> Self {
652 variant as u8 != 0
653 }
654}
655#[doc = "Field `CRCERROR` writer - Write '1' to disable interrupt for CRCERROR event"]
656pub type CRCERROR_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CRCERROR_AW, O>;
657impl<'a, const O: u8> CRCERROR_W<'a, O> {
658 #[doc = "Disable"]
659 #[inline(always)]
660 pub fn clear(self) -> &'a mut W {
661 self.variant(CRCERROR_AW::CLEAR)
662 }
663}
664#[doc = "Field `FRAMESTART` reader - Write '1' to disable interrupt for FRAMESTART event"]
665pub type FRAMESTART_R = crate::BitReader<FRAMESTART_A>;
666#[doc = "Write '1' to disable interrupt for FRAMESTART event\n\nValue on reset: 0"]
667#[derive(Clone, Copy, Debug, PartialEq)]
668pub enum FRAMESTART_A {
669 #[doc = "0: Read: Disabled"]
670 DISABLED = 0,
671 #[doc = "1: Read: Enabled"]
672 ENABLED = 1,
673}
674impl From<FRAMESTART_A> for bool {
675 #[inline(always)]
676 fn from(variant: FRAMESTART_A) -> Self {
677 variant as u8 != 0
678 }
679}
680impl FRAMESTART_R {
681 #[doc = "Get enumerated values variant"]
682 #[inline(always)]
683 pub fn variant(&self) -> FRAMESTART_A {
684 match self.bits {
685 false => FRAMESTART_A::DISABLED,
686 true => FRAMESTART_A::ENABLED,
687 }
688 }
689 #[doc = "Checks if the value of the field is `DISABLED`"]
690 #[inline(always)]
691 pub fn is_disabled(&self) -> bool {
692 *self == FRAMESTART_A::DISABLED
693 }
694 #[doc = "Checks if the value of the field is `ENABLED`"]
695 #[inline(always)]
696 pub fn is_enabled(&self) -> bool {
697 *self == FRAMESTART_A::ENABLED
698 }
699}
700#[doc = "Write '1' to disable interrupt for FRAMESTART event\n\nValue on reset: 0"]
701#[derive(Clone, Copy, Debug, PartialEq)]
702pub enum FRAMESTART_AW {
703 #[doc = "1: Disable"]
704 CLEAR = 1,
705}
706impl From<FRAMESTART_AW> for bool {
707 #[inline(always)]
708 fn from(variant: FRAMESTART_AW) -> Self {
709 variant as u8 != 0
710 }
711}
712#[doc = "Field `FRAMESTART` writer - Write '1' to disable interrupt for FRAMESTART event"]
713pub type FRAMESTART_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, FRAMESTART_AW, O>;
714impl<'a, const O: u8> FRAMESTART_W<'a, O> {
715 #[doc = "Disable"]
716 #[inline(always)]
717 pub fn clear(self) -> &'a mut W {
718 self.variant(FRAMESTART_AW::CLEAR)
719 }
720}
721#[doc = "Field `EDEND` reader - Write '1' to disable interrupt for EDEND event"]
722pub type EDEND_R = crate::BitReader<EDEND_A>;
723#[doc = "Write '1' to disable interrupt for EDEND event\n\nValue on reset: 0"]
724#[derive(Clone, Copy, Debug, PartialEq)]
725pub enum EDEND_A {
726 #[doc = "0: Read: Disabled"]
727 DISABLED = 0,
728 #[doc = "1: Read: Enabled"]
729 ENABLED = 1,
730}
731impl From<EDEND_A> for bool {
732 #[inline(always)]
733 fn from(variant: EDEND_A) -> Self {
734 variant as u8 != 0
735 }
736}
737impl EDEND_R {
738 #[doc = "Get enumerated values variant"]
739 #[inline(always)]
740 pub fn variant(&self) -> EDEND_A {
741 match self.bits {
742 false => EDEND_A::DISABLED,
743 true => EDEND_A::ENABLED,
744 }
745 }
746 #[doc = "Checks if the value of the field is `DISABLED`"]
747 #[inline(always)]
748 pub fn is_disabled(&self) -> bool {
749 *self == EDEND_A::DISABLED
750 }
751 #[doc = "Checks if the value of the field is `ENABLED`"]
752 #[inline(always)]
753 pub fn is_enabled(&self) -> bool {
754 *self == EDEND_A::ENABLED
755 }
756}
757#[doc = "Write '1' to disable interrupt for EDEND event\n\nValue on reset: 0"]
758#[derive(Clone, Copy, Debug, PartialEq)]
759pub enum EDEND_AW {
760 #[doc = "1: Disable"]
761 CLEAR = 1,
762}
763impl From<EDEND_AW> for bool {
764 #[inline(always)]
765 fn from(variant: EDEND_AW) -> Self {
766 variant as u8 != 0
767 }
768}
769#[doc = "Field `EDEND` writer - Write '1' to disable interrupt for EDEND event"]
770pub type EDEND_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, EDEND_AW, O>;
771impl<'a, const O: u8> EDEND_W<'a, O> {
772 #[doc = "Disable"]
773 #[inline(always)]
774 pub fn clear(self) -> &'a mut W {
775 self.variant(EDEND_AW::CLEAR)
776 }
777}
778#[doc = "Field `EDSTOPPED` reader - Write '1' to disable interrupt for EDSTOPPED event"]
779pub type EDSTOPPED_R = crate::BitReader<EDSTOPPED_A>;
780#[doc = "Write '1' to disable interrupt for EDSTOPPED event\n\nValue on reset: 0"]
781#[derive(Clone, Copy, Debug, PartialEq)]
782pub enum EDSTOPPED_A {
783 #[doc = "0: Read: Disabled"]
784 DISABLED = 0,
785 #[doc = "1: Read: Enabled"]
786 ENABLED = 1,
787}
788impl From<EDSTOPPED_A> for bool {
789 #[inline(always)]
790 fn from(variant: EDSTOPPED_A) -> Self {
791 variant as u8 != 0
792 }
793}
794impl EDSTOPPED_R {
795 #[doc = "Get enumerated values variant"]
796 #[inline(always)]
797 pub fn variant(&self) -> EDSTOPPED_A {
798 match self.bits {
799 false => EDSTOPPED_A::DISABLED,
800 true => EDSTOPPED_A::ENABLED,
801 }
802 }
803 #[doc = "Checks if the value of the field is `DISABLED`"]
804 #[inline(always)]
805 pub fn is_disabled(&self) -> bool {
806 *self == EDSTOPPED_A::DISABLED
807 }
808 #[doc = "Checks if the value of the field is `ENABLED`"]
809 #[inline(always)]
810 pub fn is_enabled(&self) -> bool {
811 *self == EDSTOPPED_A::ENABLED
812 }
813}
814#[doc = "Write '1' to disable interrupt for EDSTOPPED event\n\nValue on reset: 0"]
815#[derive(Clone, Copy, Debug, PartialEq)]
816pub enum EDSTOPPED_AW {
817 #[doc = "1: Disable"]
818 CLEAR = 1,
819}
820impl From<EDSTOPPED_AW> for bool {
821 #[inline(always)]
822 fn from(variant: EDSTOPPED_AW) -> Self {
823 variant as u8 != 0
824 }
825}
826#[doc = "Field `EDSTOPPED` writer - Write '1' to disable interrupt for EDSTOPPED event"]
827pub type EDSTOPPED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, EDSTOPPED_AW, O>;
828impl<'a, const O: u8> EDSTOPPED_W<'a, O> {
829 #[doc = "Disable"]
830 #[inline(always)]
831 pub fn clear(self) -> &'a mut W {
832 self.variant(EDSTOPPED_AW::CLEAR)
833 }
834}
835#[doc = "Field `CCAIDLE` reader - Write '1' to disable interrupt for CCAIDLE event"]
836pub type CCAIDLE_R = crate::BitReader<CCAIDLE_A>;
837#[doc = "Write '1' to disable interrupt for CCAIDLE event\n\nValue on reset: 0"]
838#[derive(Clone, Copy, Debug, PartialEq)]
839pub enum CCAIDLE_A {
840 #[doc = "0: Read: Disabled"]
841 DISABLED = 0,
842 #[doc = "1: Read: Enabled"]
843 ENABLED = 1,
844}
845impl From<CCAIDLE_A> for bool {
846 #[inline(always)]
847 fn from(variant: CCAIDLE_A) -> Self {
848 variant as u8 != 0
849 }
850}
851impl CCAIDLE_R {
852 #[doc = "Get enumerated values variant"]
853 #[inline(always)]
854 pub fn variant(&self) -> CCAIDLE_A {
855 match self.bits {
856 false => CCAIDLE_A::DISABLED,
857 true => CCAIDLE_A::ENABLED,
858 }
859 }
860 #[doc = "Checks if the value of the field is `DISABLED`"]
861 #[inline(always)]
862 pub fn is_disabled(&self) -> bool {
863 *self == CCAIDLE_A::DISABLED
864 }
865 #[doc = "Checks if the value of the field is `ENABLED`"]
866 #[inline(always)]
867 pub fn is_enabled(&self) -> bool {
868 *self == CCAIDLE_A::ENABLED
869 }
870}
871#[doc = "Write '1' to disable interrupt for CCAIDLE event\n\nValue on reset: 0"]
872#[derive(Clone, Copy, Debug, PartialEq)]
873pub enum CCAIDLE_AW {
874 #[doc = "1: Disable"]
875 CLEAR = 1,
876}
877impl From<CCAIDLE_AW> for bool {
878 #[inline(always)]
879 fn from(variant: CCAIDLE_AW) -> Self {
880 variant as u8 != 0
881 }
882}
883#[doc = "Field `CCAIDLE` writer - Write '1' to disable interrupt for CCAIDLE event"]
884pub type CCAIDLE_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CCAIDLE_AW, O>;
885impl<'a, const O: u8> CCAIDLE_W<'a, O> {
886 #[doc = "Disable"]
887 #[inline(always)]
888 pub fn clear(self) -> &'a mut W {
889 self.variant(CCAIDLE_AW::CLEAR)
890 }
891}
892#[doc = "Field `CCABUSY` reader - Write '1' to disable interrupt for CCABUSY event"]
893pub type CCABUSY_R = crate::BitReader<CCABUSY_A>;
894#[doc = "Write '1' to disable interrupt for CCABUSY event\n\nValue on reset: 0"]
895#[derive(Clone, Copy, Debug, PartialEq)]
896pub enum CCABUSY_A {
897 #[doc = "0: Read: Disabled"]
898 DISABLED = 0,
899 #[doc = "1: Read: Enabled"]
900 ENABLED = 1,
901}
902impl From<CCABUSY_A> for bool {
903 #[inline(always)]
904 fn from(variant: CCABUSY_A) -> Self {
905 variant as u8 != 0
906 }
907}
908impl CCABUSY_R {
909 #[doc = "Get enumerated values variant"]
910 #[inline(always)]
911 pub fn variant(&self) -> CCABUSY_A {
912 match self.bits {
913 false => CCABUSY_A::DISABLED,
914 true => CCABUSY_A::ENABLED,
915 }
916 }
917 #[doc = "Checks if the value of the field is `DISABLED`"]
918 #[inline(always)]
919 pub fn is_disabled(&self) -> bool {
920 *self == CCABUSY_A::DISABLED
921 }
922 #[doc = "Checks if the value of the field is `ENABLED`"]
923 #[inline(always)]
924 pub fn is_enabled(&self) -> bool {
925 *self == CCABUSY_A::ENABLED
926 }
927}
928#[doc = "Write '1' to disable interrupt for CCABUSY event\n\nValue on reset: 0"]
929#[derive(Clone, Copy, Debug, PartialEq)]
930pub enum CCABUSY_AW {
931 #[doc = "1: Disable"]
932 CLEAR = 1,
933}
934impl From<CCABUSY_AW> for bool {
935 #[inline(always)]
936 fn from(variant: CCABUSY_AW) -> Self {
937 variant as u8 != 0
938 }
939}
940#[doc = "Field `CCABUSY` writer - Write '1' to disable interrupt for CCABUSY event"]
941pub type CCABUSY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CCABUSY_AW, O>;
942impl<'a, const O: u8> CCABUSY_W<'a, O> {
943 #[doc = "Disable"]
944 #[inline(always)]
945 pub fn clear(self) -> &'a mut W {
946 self.variant(CCABUSY_AW::CLEAR)
947 }
948}
949#[doc = "Field `CCASTOPPED` reader - Write '1' to disable interrupt for CCASTOPPED event"]
950pub type CCASTOPPED_R = crate::BitReader<CCASTOPPED_A>;
951#[doc = "Write '1' to disable interrupt for CCASTOPPED event\n\nValue on reset: 0"]
952#[derive(Clone, Copy, Debug, PartialEq)]
953pub enum CCASTOPPED_A {
954 #[doc = "0: Read: Disabled"]
955 DISABLED = 0,
956 #[doc = "1: Read: Enabled"]
957 ENABLED = 1,
958}
959impl From<CCASTOPPED_A> for bool {
960 #[inline(always)]
961 fn from(variant: CCASTOPPED_A) -> Self {
962 variant as u8 != 0
963 }
964}
965impl CCASTOPPED_R {
966 #[doc = "Get enumerated values variant"]
967 #[inline(always)]
968 pub fn variant(&self) -> CCASTOPPED_A {
969 match self.bits {
970 false => CCASTOPPED_A::DISABLED,
971 true => CCASTOPPED_A::ENABLED,
972 }
973 }
974 #[doc = "Checks if the value of the field is `DISABLED`"]
975 #[inline(always)]
976 pub fn is_disabled(&self) -> bool {
977 *self == CCASTOPPED_A::DISABLED
978 }
979 #[doc = "Checks if the value of the field is `ENABLED`"]
980 #[inline(always)]
981 pub fn is_enabled(&self) -> bool {
982 *self == CCASTOPPED_A::ENABLED
983 }
984}
985#[doc = "Write '1' to disable interrupt for CCASTOPPED event\n\nValue on reset: 0"]
986#[derive(Clone, Copy, Debug, PartialEq)]
987pub enum CCASTOPPED_AW {
988 #[doc = "1: Disable"]
989 CLEAR = 1,
990}
991impl From<CCASTOPPED_AW> for bool {
992 #[inline(always)]
993 fn from(variant: CCASTOPPED_AW) -> Self {
994 variant as u8 != 0
995 }
996}
997#[doc = "Field `CCASTOPPED` writer - Write '1' to disable interrupt for CCASTOPPED event"]
998pub type CCASTOPPED_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, CCASTOPPED_AW, O>;
999impl<'a, const O: u8> CCASTOPPED_W<'a, O> {
1000 #[doc = "Disable"]
1001 #[inline(always)]
1002 pub fn clear(self) -> &'a mut W {
1003 self.variant(CCASTOPPED_AW::CLEAR)
1004 }
1005}
1006#[doc = "Field `RATEBOOST` reader - Write '1' to disable interrupt for RATEBOOST event"]
1007pub type RATEBOOST_R = crate::BitReader<RATEBOOST_A>;
1008#[doc = "Write '1' to disable interrupt for RATEBOOST event\n\nValue on reset: 0"]
1009#[derive(Clone, Copy, Debug, PartialEq)]
1010pub enum RATEBOOST_A {
1011 #[doc = "0: Read: Disabled"]
1012 DISABLED = 0,
1013 #[doc = "1: Read: Enabled"]
1014 ENABLED = 1,
1015}
1016impl From<RATEBOOST_A> for bool {
1017 #[inline(always)]
1018 fn from(variant: RATEBOOST_A) -> Self {
1019 variant as u8 != 0
1020 }
1021}
1022impl RATEBOOST_R {
1023 #[doc = "Get enumerated values variant"]
1024 #[inline(always)]
1025 pub fn variant(&self) -> RATEBOOST_A {
1026 match self.bits {
1027 false => RATEBOOST_A::DISABLED,
1028 true => RATEBOOST_A::ENABLED,
1029 }
1030 }
1031 #[doc = "Checks if the value of the field is `DISABLED`"]
1032 #[inline(always)]
1033 pub fn is_disabled(&self) -> bool {
1034 *self == RATEBOOST_A::DISABLED
1035 }
1036 #[doc = "Checks if the value of the field is `ENABLED`"]
1037 #[inline(always)]
1038 pub fn is_enabled(&self) -> bool {
1039 *self == RATEBOOST_A::ENABLED
1040 }
1041}
1042#[doc = "Write '1' to disable interrupt for RATEBOOST event\n\nValue on reset: 0"]
1043#[derive(Clone, Copy, Debug, PartialEq)]
1044pub enum RATEBOOST_AW {
1045 #[doc = "1: Disable"]
1046 CLEAR = 1,
1047}
1048impl From<RATEBOOST_AW> for bool {
1049 #[inline(always)]
1050 fn from(variant: RATEBOOST_AW) -> Self {
1051 variant as u8 != 0
1052 }
1053}
1054#[doc = "Field `RATEBOOST` writer - Write '1' to disable interrupt for RATEBOOST event"]
1055pub type RATEBOOST_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RATEBOOST_AW, O>;
1056impl<'a, const O: u8> RATEBOOST_W<'a, O> {
1057 #[doc = "Disable"]
1058 #[inline(always)]
1059 pub fn clear(self) -> &'a mut W {
1060 self.variant(RATEBOOST_AW::CLEAR)
1061 }
1062}
1063#[doc = "Field `TXREADY` reader - Write '1' to disable interrupt for TXREADY event"]
1064pub type TXREADY_R = crate::BitReader<TXREADY_A>;
1065#[doc = "Write '1' to disable interrupt for TXREADY event\n\nValue on reset: 0"]
1066#[derive(Clone, Copy, Debug, PartialEq)]
1067pub enum TXREADY_A {
1068 #[doc = "0: Read: Disabled"]
1069 DISABLED = 0,
1070 #[doc = "1: Read: Enabled"]
1071 ENABLED = 1,
1072}
1073impl From<TXREADY_A> for bool {
1074 #[inline(always)]
1075 fn from(variant: TXREADY_A) -> Self {
1076 variant as u8 != 0
1077 }
1078}
1079impl TXREADY_R {
1080 #[doc = "Get enumerated values variant"]
1081 #[inline(always)]
1082 pub fn variant(&self) -> TXREADY_A {
1083 match self.bits {
1084 false => TXREADY_A::DISABLED,
1085 true => TXREADY_A::ENABLED,
1086 }
1087 }
1088 #[doc = "Checks if the value of the field is `DISABLED`"]
1089 #[inline(always)]
1090 pub fn is_disabled(&self) -> bool {
1091 *self == TXREADY_A::DISABLED
1092 }
1093 #[doc = "Checks if the value of the field is `ENABLED`"]
1094 #[inline(always)]
1095 pub fn is_enabled(&self) -> bool {
1096 *self == TXREADY_A::ENABLED
1097 }
1098}
1099#[doc = "Write '1' to disable interrupt for TXREADY event\n\nValue on reset: 0"]
1100#[derive(Clone, Copy, Debug, PartialEq)]
1101pub enum TXREADY_AW {
1102 #[doc = "1: Disable"]
1103 CLEAR = 1,
1104}
1105impl From<TXREADY_AW> for bool {
1106 #[inline(always)]
1107 fn from(variant: TXREADY_AW) -> Self {
1108 variant as u8 != 0
1109 }
1110}
1111#[doc = "Field `TXREADY` writer - Write '1' to disable interrupt for TXREADY event"]
1112pub type TXREADY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, TXREADY_AW, O>;
1113impl<'a, const O: u8> TXREADY_W<'a, O> {
1114 #[doc = "Disable"]
1115 #[inline(always)]
1116 pub fn clear(self) -> &'a mut W {
1117 self.variant(TXREADY_AW::CLEAR)
1118 }
1119}
1120#[doc = "Field `RXREADY` reader - Write '1' to disable interrupt for RXREADY event"]
1121pub type RXREADY_R = crate::BitReader<RXREADY_A>;
1122#[doc = "Write '1' to disable interrupt for RXREADY event\n\nValue on reset: 0"]
1123#[derive(Clone, Copy, Debug, PartialEq)]
1124pub enum RXREADY_A {
1125 #[doc = "0: Read: Disabled"]
1126 DISABLED = 0,
1127 #[doc = "1: Read: Enabled"]
1128 ENABLED = 1,
1129}
1130impl From<RXREADY_A> for bool {
1131 #[inline(always)]
1132 fn from(variant: RXREADY_A) -> Self {
1133 variant as u8 != 0
1134 }
1135}
1136impl RXREADY_R {
1137 #[doc = "Get enumerated values variant"]
1138 #[inline(always)]
1139 pub fn variant(&self) -> RXREADY_A {
1140 match self.bits {
1141 false => RXREADY_A::DISABLED,
1142 true => RXREADY_A::ENABLED,
1143 }
1144 }
1145 #[doc = "Checks if the value of the field is `DISABLED`"]
1146 #[inline(always)]
1147 pub fn is_disabled(&self) -> bool {
1148 *self == RXREADY_A::DISABLED
1149 }
1150 #[doc = "Checks if the value of the field is `ENABLED`"]
1151 #[inline(always)]
1152 pub fn is_enabled(&self) -> bool {
1153 *self == RXREADY_A::ENABLED
1154 }
1155}
1156#[doc = "Write '1' to disable interrupt for RXREADY event\n\nValue on reset: 0"]
1157#[derive(Clone, Copy, Debug, PartialEq)]
1158pub enum RXREADY_AW {
1159 #[doc = "1: Disable"]
1160 CLEAR = 1,
1161}
1162impl From<RXREADY_AW> for bool {
1163 #[inline(always)]
1164 fn from(variant: RXREADY_AW) -> Self {
1165 variant as u8 != 0
1166 }
1167}
1168#[doc = "Field `RXREADY` writer - Write '1' to disable interrupt for RXREADY event"]
1169pub type RXREADY_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RXREADY_AW, O>;
1170impl<'a, const O: u8> RXREADY_W<'a, O> {
1171 #[doc = "Disable"]
1172 #[inline(always)]
1173 pub fn clear(self) -> &'a mut W {
1174 self.variant(RXREADY_AW::CLEAR)
1175 }
1176}
1177#[doc = "Field `MHRMATCH` reader - Write '1' to disable interrupt for MHRMATCH event"]
1178pub type MHRMATCH_R = crate::BitReader<MHRMATCH_A>;
1179#[doc = "Write '1' to disable interrupt for MHRMATCH event\n\nValue on reset: 0"]
1180#[derive(Clone, Copy, Debug, PartialEq)]
1181pub enum MHRMATCH_A {
1182 #[doc = "0: Read: Disabled"]
1183 DISABLED = 0,
1184 #[doc = "1: Read: Enabled"]
1185 ENABLED = 1,
1186}
1187impl From<MHRMATCH_A> for bool {
1188 #[inline(always)]
1189 fn from(variant: MHRMATCH_A) -> Self {
1190 variant as u8 != 0
1191 }
1192}
1193impl MHRMATCH_R {
1194 #[doc = "Get enumerated values variant"]
1195 #[inline(always)]
1196 pub fn variant(&self) -> MHRMATCH_A {
1197 match self.bits {
1198 false => MHRMATCH_A::DISABLED,
1199 true => MHRMATCH_A::ENABLED,
1200 }
1201 }
1202 #[doc = "Checks if the value of the field is `DISABLED`"]
1203 #[inline(always)]
1204 pub fn is_disabled(&self) -> bool {
1205 *self == MHRMATCH_A::DISABLED
1206 }
1207 #[doc = "Checks if the value of the field is `ENABLED`"]
1208 #[inline(always)]
1209 pub fn is_enabled(&self) -> bool {
1210 *self == MHRMATCH_A::ENABLED
1211 }
1212}
1213#[doc = "Write '1' to disable interrupt for MHRMATCH event\n\nValue on reset: 0"]
1214#[derive(Clone, Copy, Debug, PartialEq)]
1215pub enum MHRMATCH_AW {
1216 #[doc = "1: Disable"]
1217 CLEAR = 1,
1218}
1219impl From<MHRMATCH_AW> for bool {
1220 #[inline(always)]
1221 fn from(variant: MHRMATCH_AW) -> Self {
1222 variant as u8 != 0
1223 }
1224}
1225#[doc = "Field `MHRMATCH` writer - Write '1' to disable interrupt for MHRMATCH event"]
1226pub type MHRMATCH_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, MHRMATCH_AW, O>;
1227impl<'a, const O: u8> MHRMATCH_W<'a, O> {
1228 #[doc = "Disable"]
1229 #[inline(always)]
1230 pub fn clear(self) -> &'a mut W {
1231 self.variant(MHRMATCH_AW::CLEAR)
1232 }
1233}
1234#[doc = "Field `PHYEND` reader - Write '1' to disable interrupt for PHYEND event"]
1235pub type PHYEND_R = crate::BitReader<PHYEND_A>;
1236#[doc = "Write '1' to disable interrupt for PHYEND event\n\nValue on reset: 0"]
1237#[derive(Clone, Copy, Debug, PartialEq)]
1238pub enum PHYEND_A {
1239 #[doc = "0: Read: Disabled"]
1240 DISABLED = 0,
1241 #[doc = "1: Read: Enabled"]
1242 ENABLED = 1,
1243}
1244impl From<PHYEND_A> for bool {
1245 #[inline(always)]
1246 fn from(variant: PHYEND_A) -> Self {
1247 variant as u8 != 0
1248 }
1249}
1250impl PHYEND_R {
1251 #[doc = "Get enumerated values variant"]
1252 #[inline(always)]
1253 pub fn variant(&self) -> PHYEND_A {
1254 match self.bits {
1255 false => PHYEND_A::DISABLED,
1256 true => PHYEND_A::ENABLED,
1257 }
1258 }
1259 #[doc = "Checks if the value of the field is `DISABLED`"]
1260 #[inline(always)]
1261 pub fn is_disabled(&self) -> bool {
1262 *self == PHYEND_A::DISABLED
1263 }
1264 #[doc = "Checks if the value of the field is `ENABLED`"]
1265 #[inline(always)]
1266 pub fn is_enabled(&self) -> bool {
1267 *self == PHYEND_A::ENABLED
1268 }
1269}
1270#[doc = "Write '1' to disable interrupt for PHYEND event\n\nValue on reset: 0"]
1271#[derive(Clone, Copy, Debug, PartialEq)]
1272pub enum PHYEND_AW {
1273 #[doc = "1: Disable"]
1274 CLEAR = 1,
1275}
1276impl From<PHYEND_AW> for bool {
1277 #[inline(always)]
1278 fn from(variant: PHYEND_AW) -> Self {
1279 variant as u8 != 0
1280 }
1281}
1282#[doc = "Field `PHYEND` writer - Write '1' to disable interrupt for PHYEND event"]
1283pub type PHYEND_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, PHYEND_AW, O>;
1284impl<'a, const O: u8> PHYEND_W<'a, O> {
1285 #[doc = "Disable"]
1286 #[inline(always)]
1287 pub fn clear(self) -> &'a mut W {
1288 self.variant(PHYEND_AW::CLEAR)
1289 }
1290}
1291impl R {
1292 #[doc = "Bit 0 - Write '1' to disable interrupt for READY event"]
1293 #[inline(always)]
1294 pub fn ready(&self) -> READY_R {
1295 READY_R::new((self.bits & 1) != 0)
1296 }
1297 #[doc = "Bit 1 - Write '1' to disable interrupt for ADDRESS event"]
1298 #[inline(always)]
1299 pub fn address(&self) -> ADDRESS_R {
1300 ADDRESS_R::new(((self.bits >> 1) & 1) != 0)
1301 }
1302 #[doc = "Bit 2 - Write '1' to disable interrupt for PAYLOAD event"]
1303 #[inline(always)]
1304 pub fn payload(&self) -> PAYLOAD_R {
1305 PAYLOAD_R::new(((self.bits >> 2) & 1) != 0)
1306 }
1307 #[doc = "Bit 3 - Write '1' to disable interrupt for END event"]
1308 #[inline(always)]
1309 pub fn end(&self) -> END_R {
1310 END_R::new(((self.bits >> 3) & 1) != 0)
1311 }
1312 #[doc = "Bit 4 - Write '1' to disable interrupt for DISABLED event"]
1313 #[inline(always)]
1314 pub fn disabled(&self) -> DISABLED_R {
1315 DISABLED_R::new(((self.bits >> 4) & 1) != 0)
1316 }
1317 #[doc = "Bit 5 - Write '1' to disable interrupt for DEVMATCH event"]
1318 #[inline(always)]
1319 pub fn devmatch(&self) -> DEVMATCH_R {
1320 DEVMATCH_R::new(((self.bits >> 5) & 1) != 0)
1321 }
1322 #[doc = "Bit 6 - Write '1' to disable interrupt for DEVMISS event"]
1323 #[inline(always)]
1324 pub fn devmiss(&self) -> DEVMISS_R {
1325 DEVMISS_R::new(((self.bits >> 6) & 1) != 0)
1326 }
1327 #[doc = "Bit 7 - Write '1' to disable interrupt for RSSIEND event"]
1328 #[inline(always)]
1329 pub fn rssiend(&self) -> RSSIEND_R {
1330 RSSIEND_R::new(((self.bits >> 7) & 1) != 0)
1331 }
1332 #[doc = "Bit 10 - Write '1' to disable interrupt for BCMATCH event"]
1333 #[inline(always)]
1334 pub fn bcmatch(&self) -> BCMATCH_R {
1335 BCMATCH_R::new(((self.bits >> 10) & 1) != 0)
1336 }
1337 #[doc = "Bit 12 - Write '1' to disable interrupt for CRCOK event"]
1338 #[inline(always)]
1339 pub fn crcok(&self) -> CRCOK_R {
1340 CRCOK_R::new(((self.bits >> 12) & 1) != 0)
1341 }
1342 #[doc = "Bit 13 - Write '1' to disable interrupt for CRCERROR event"]
1343 #[inline(always)]
1344 pub fn crcerror(&self) -> CRCERROR_R {
1345 CRCERROR_R::new(((self.bits >> 13) & 1) != 0)
1346 }
1347 #[doc = "Bit 14 - Write '1' to disable interrupt for FRAMESTART event"]
1348 #[inline(always)]
1349 pub fn framestart(&self) -> FRAMESTART_R {
1350 FRAMESTART_R::new(((self.bits >> 14) & 1) != 0)
1351 }
1352 #[doc = "Bit 15 - Write '1' to disable interrupt for EDEND event"]
1353 #[inline(always)]
1354 pub fn edend(&self) -> EDEND_R {
1355 EDEND_R::new(((self.bits >> 15) & 1) != 0)
1356 }
1357 #[doc = "Bit 16 - Write '1' to disable interrupt for EDSTOPPED event"]
1358 #[inline(always)]
1359 pub fn edstopped(&self) -> EDSTOPPED_R {
1360 EDSTOPPED_R::new(((self.bits >> 16) & 1) != 0)
1361 }
1362 #[doc = "Bit 17 - Write '1' to disable interrupt for CCAIDLE event"]
1363 #[inline(always)]
1364 pub fn ccaidle(&self) -> CCAIDLE_R {
1365 CCAIDLE_R::new(((self.bits >> 17) & 1) != 0)
1366 }
1367 #[doc = "Bit 18 - Write '1' to disable interrupt for CCABUSY event"]
1368 #[inline(always)]
1369 pub fn ccabusy(&self) -> CCABUSY_R {
1370 CCABUSY_R::new(((self.bits >> 18) & 1) != 0)
1371 }
1372 #[doc = "Bit 19 - Write '1' to disable interrupt for CCASTOPPED event"]
1373 #[inline(always)]
1374 pub fn ccastopped(&self) -> CCASTOPPED_R {
1375 CCASTOPPED_R::new(((self.bits >> 19) & 1) != 0)
1376 }
1377 #[doc = "Bit 20 - Write '1' to disable interrupt for RATEBOOST event"]
1378 #[inline(always)]
1379 pub fn rateboost(&self) -> RATEBOOST_R {
1380 RATEBOOST_R::new(((self.bits >> 20) & 1) != 0)
1381 }
1382 #[doc = "Bit 21 - Write '1' to disable interrupt for TXREADY event"]
1383 #[inline(always)]
1384 pub fn txready(&self) -> TXREADY_R {
1385 TXREADY_R::new(((self.bits >> 21) & 1) != 0)
1386 }
1387 #[doc = "Bit 22 - Write '1' to disable interrupt for RXREADY event"]
1388 #[inline(always)]
1389 pub fn rxready(&self) -> RXREADY_R {
1390 RXREADY_R::new(((self.bits >> 22) & 1) != 0)
1391 }
1392 #[doc = "Bit 23 - Write '1' to disable interrupt for MHRMATCH event"]
1393 #[inline(always)]
1394 pub fn mhrmatch(&self) -> MHRMATCH_R {
1395 MHRMATCH_R::new(((self.bits >> 23) & 1) != 0)
1396 }
1397 #[doc = "Bit 27 - Write '1' to disable interrupt for PHYEND event"]
1398 #[inline(always)]
1399 pub fn phyend(&self) -> PHYEND_R {
1400 PHYEND_R::new(((self.bits >> 27) & 1) != 0)
1401 }
1402}
1403impl W {
1404 #[doc = "Bit 0 - Write '1' to disable interrupt for READY event"]
1405 #[inline(always)]
1406 pub fn ready(&mut self) -> READY_W<0> {
1407 READY_W::new(self)
1408 }
1409 #[doc = "Bit 1 - Write '1' to disable interrupt for ADDRESS event"]
1410 #[inline(always)]
1411 pub fn address(&mut self) -> ADDRESS_W<1> {
1412 ADDRESS_W::new(self)
1413 }
1414 #[doc = "Bit 2 - Write '1' to disable interrupt for PAYLOAD event"]
1415 #[inline(always)]
1416 pub fn payload(&mut self) -> PAYLOAD_W<2> {
1417 PAYLOAD_W::new(self)
1418 }
1419 #[doc = "Bit 3 - Write '1' to disable interrupt for END event"]
1420 #[inline(always)]
1421 pub fn end(&mut self) -> END_W<3> {
1422 END_W::new(self)
1423 }
1424 #[doc = "Bit 4 - Write '1' to disable interrupt for DISABLED event"]
1425 #[inline(always)]
1426 pub fn disabled(&mut self) -> DISABLED_W<4> {
1427 DISABLED_W::new(self)
1428 }
1429 #[doc = "Bit 5 - Write '1' to disable interrupt for DEVMATCH event"]
1430 #[inline(always)]
1431 pub fn devmatch(&mut self) -> DEVMATCH_W<5> {
1432 DEVMATCH_W::new(self)
1433 }
1434 #[doc = "Bit 6 - Write '1' to disable interrupt for DEVMISS event"]
1435 #[inline(always)]
1436 pub fn devmiss(&mut self) -> DEVMISS_W<6> {
1437 DEVMISS_W::new(self)
1438 }
1439 #[doc = "Bit 7 - Write '1' to disable interrupt for RSSIEND event"]
1440 #[inline(always)]
1441 pub fn rssiend(&mut self) -> RSSIEND_W<7> {
1442 RSSIEND_W::new(self)
1443 }
1444 #[doc = "Bit 10 - Write '1' to disable interrupt for BCMATCH event"]
1445 #[inline(always)]
1446 pub fn bcmatch(&mut self) -> BCMATCH_W<10> {
1447 BCMATCH_W::new(self)
1448 }
1449 #[doc = "Bit 12 - Write '1' to disable interrupt for CRCOK event"]
1450 #[inline(always)]
1451 pub fn crcok(&mut self) -> CRCOK_W<12> {
1452 CRCOK_W::new(self)
1453 }
1454 #[doc = "Bit 13 - Write '1' to disable interrupt for CRCERROR event"]
1455 #[inline(always)]
1456 pub fn crcerror(&mut self) -> CRCERROR_W<13> {
1457 CRCERROR_W::new(self)
1458 }
1459 #[doc = "Bit 14 - Write '1' to disable interrupt for FRAMESTART event"]
1460 #[inline(always)]
1461 pub fn framestart(&mut self) -> FRAMESTART_W<14> {
1462 FRAMESTART_W::new(self)
1463 }
1464 #[doc = "Bit 15 - Write '1' to disable interrupt for EDEND event"]
1465 #[inline(always)]
1466 pub fn edend(&mut self) -> EDEND_W<15> {
1467 EDEND_W::new(self)
1468 }
1469 #[doc = "Bit 16 - Write '1' to disable interrupt for EDSTOPPED event"]
1470 #[inline(always)]
1471 pub fn edstopped(&mut self) -> EDSTOPPED_W<16> {
1472 EDSTOPPED_W::new(self)
1473 }
1474 #[doc = "Bit 17 - Write '1' to disable interrupt for CCAIDLE event"]
1475 #[inline(always)]
1476 pub fn ccaidle(&mut self) -> CCAIDLE_W<17> {
1477 CCAIDLE_W::new(self)
1478 }
1479 #[doc = "Bit 18 - Write '1' to disable interrupt for CCABUSY event"]
1480 #[inline(always)]
1481 pub fn ccabusy(&mut self) -> CCABUSY_W<18> {
1482 CCABUSY_W::new(self)
1483 }
1484 #[doc = "Bit 19 - Write '1' to disable interrupt for CCASTOPPED event"]
1485 #[inline(always)]
1486 pub fn ccastopped(&mut self) -> CCASTOPPED_W<19> {
1487 CCASTOPPED_W::new(self)
1488 }
1489 #[doc = "Bit 20 - Write '1' to disable interrupt for RATEBOOST event"]
1490 #[inline(always)]
1491 pub fn rateboost(&mut self) -> RATEBOOST_W<20> {
1492 RATEBOOST_W::new(self)
1493 }
1494 #[doc = "Bit 21 - Write '1' to disable interrupt for TXREADY event"]
1495 #[inline(always)]
1496 pub fn txready(&mut self) -> TXREADY_W<21> {
1497 TXREADY_W::new(self)
1498 }
1499 #[doc = "Bit 22 - Write '1' to disable interrupt for RXREADY event"]
1500 #[inline(always)]
1501 pub fn rxready(&mut self) -> RXREADY_W<22> {
1502 RXREADY_W::new(self)
1503 }
1504 #[doc = "Bit 23 - Write '1' to disable interrupt for MHRMATCH event"]
1505 #[inline(always)]
1506 pub fn mhrmatch(&mut self) -> MHRMATCH_W<23> {
1507 MHRMATCH_W::new(self)
1508 }
1509 #[doc = "Bit 27 - Write '1' to disable interrupt for PHYEND event"]
1510 #[inline(always)]
1511 pub fn phyend(&mut self) -> PHYEND_W<27> {
1512 PHYEND_W::new(self)
1513 }
1514 #[doc = "Writes raw bits to the register."]
1515 #[inline(always)]
1516 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1517 self.0.bits(bits);
1518 self
1519 }
1520}
1521#[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"]
1522pub struct INTENCLR_SPEC;
1523impl crate::RegisterSpec for INTENCLR_SPEC {
1524 type Ux = u32;
1525}
1526#[doc = "`read()` method returns [intenclr::R](R) reader structure"]
1527impl crate::Readable for INTENCLR_SPEC {
1528 type Reader = R;
1529}
1530#[doc = "`write(|w| ..)` method takes [intenclr::W](W) writer structure"]
1531impl crate::Writable for INTENCLR_SPEC {
1532 type Writer = W;
1533}
1534#[doc = "`reset()` method sets INTENCLR to value 0"]
1535impl crate::Resettable for INTENCLR_SPEC {
1536 #[inline(always)]
1537 fn reset_value() -> Self::Ux {
1538 0
1539 }
1540}