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 `RECEIVE0` reader - Write '1' to disable interrupt for event RECEIVE\\[0\\]"]
38pub type RECEIVE0_R = crate::BitReader<RECEIVE0_A>;
39#[doc = "Write '1' to disable interrupt for event RECEIVE\\[0\\]\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum RECEIVE0_A {
42 #[doc = "0: Read: Disabled"]
43 DISABLED = 0,
44 #[doc = "1: Read: Enabled"]
45 ENABLED = 1,
46}
47impl From<RECEIVE0_A> for bool {
48 #[inline(always)]
49 fn from(variant: RECEIVE0_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl RECEIVE0_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> RECEIVE0_A {
57 match self.bits {
58 false => RECEIVE0_A::DISABLED,
59 true => RECEIVE0_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 == RECEIVE0_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 == RECEIVE0_A::ENABLED
71 }
72}
73#[doc = "Write '1' to disable interrupt for event RECEIVE\\[0\\]\n\nValue on reset: 0"]
74#[derive(Clone, Copy, Debug, PartialEq)]
75pub enum RECEIVE0_AW {
76 #[doc = "1: Disable"]
77 CLEAR = 1,
78}
79impl From<RECEIVE0_AW> for bool {
80 #[inline(always)]
81 fn from(variant: RECEIVE0_AW) -> Self {
82 variant as u8 != 0
83 }
84}
85#[doc = "Field `RECEIVE0` writer - Write '1' to disable interrupt for event RECEIVE\\[0\\]"]
86pub type RECEIVE0_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE0_AW, O>;
87impl<'a, const O: u8> RECEIVE0_W<'a, O> {
88 #[doc = "Disable"]
89 #[inline(always)]
90 pub fn clear(self) -> &'a mut W {
91 self.variant(RECEIVE0_AW::CLEAR)
92 }
93}
94#[doc = "Field `RECEIVE1` reader - Write '1' to disable interrupt for event RECEIVE\\[1\\]"]
95pub type RECEIVE1_R = crate::BitReader<RECEIVE1_A>;
96#[doc = "Write '1' to disable interrupt for event RECEIVE\\[1\\]\n\nValue on reset: 0"]
97#[derive(Clone, Copy, Debug, PartialEq)]
98pub enum RECEIVE1_A {
99 #[doc = "0: Read: Disabled"]
100 DISABLED = 0,
101 #[doc = "1: Read: Enabled"]
102 ENABLED = 1,
103}
104impl From<RECEIVE1_A> for bool {
105 #[inline(always)]
106 fn from(variant: RECEIVE1_A) -> Self {
107 variant as u8 != 0
108 }
109}
110impl RECEIVE1_R {
111 #[doc = "Get enumerated values variant"]
112 #[inline(always)]
113 pub fn variant(&self) -> RECEIVE1_A {
114 match self.bits {
115 false => RECEIVE1_A::DISABLED,
116 true => RECEIVE1_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 == RECEIVE1_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 == RECEIVE1_A::ENABLED
128 }
129}
130#[doc = "Write '1' to disable interrupt for event RECEIVE\\[1\\]\n\nValue on reset: 0"]
131#[derive(Clone, Copy, Debug, PartialEq)]
132pub enum RECEIVE1_AW {
133 #[doc = "1: Disable"]
134 CLEAR = 1,
135}
136impl From<RECEIVE1_AW> for bool {
137 #[inline(always)]
138 fn from(variant: RECEIVE1_AW) -> Self {
139 variant as u8 != 0
140 }
141}
142#[doc = "Field `RECEIVE1` writer - Write '1' to disable interrupt for event RECEIVE\\[1\\]"]
143pub type RECEIVE1_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE1_AW, O>;
144impl<'a, const O: u8> RECEIVE1_W<'a, O> {
145 #[doc = "Disable"]
146 #[inline(always)]
147 pub fn clear(self) -> &'a mut W {
148 self.variant(RECEIVE1_AW::CLEAR)
149 }
150}
151#[doc = "Field `RECEIVE2` reader - Write '1' to disable interrupt for event RECEIVE\\[2\\]"]
152pub type RECEIVE2_R = crate::BitReader<RECEIVE2_A>;
153#[doc = "Write '1' to disable interrupt for event RECEIVE\\[2\\]\n\nValue on reset: 0"]
154#[derive(Clone, Copy, Debug, PartialEq)]
155pub enum RECEIVE2_A {
156 #[doc = "0: Read: Disabled"]
157 DISABLED = 0,
158 #[doc = "1: Read: Enabled"]
159 ENABLED = 1,
160}
161impl From<RECEIVE2_A> for bool {
162 #[inline(always)]
163 fn from(variant: RECEIVE2_A) -> Self {
164 variant as u8 != 0
165 }
166}
167impl RECEIVE2_R {
168 #[doc = "Get enumerated values variant"]
169 #[inline(always)]
170 pub fn variant(&self) -> RECEIVE2_A {
171 match self.bits {
172 false => RECEIVE2_A::DISABLED,
173 true => RECEIVE2_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 == RECEIVE2_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 == RECEIVE2_A::ENABLED
185 }
186}
187#[doc = "Write '1' to disable interrupt for event RECEIVE\\[2\\]\n\nValue on reset: 0"]
188#[derive(Clone, Copy, Debug, PartialEq)]
189pub enum RECEIVE2_AW {
190 #[doc = "1: Disable"]
191 CLEAR = 1,
192}
193impl From<RECEIVE2_AW> for bool {
194 #[inline(always)]
195 fn from(variant: RECEIVE2_AW) -> Self {
196 variant as u8 != 0
197 }
198}
199#[doc = "Field `RECEIVE2` writer - Write '1' to disable interrupt for event RECEIVE\\[2\\]"]
200pub type RECEIVE2_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE2_AW, O>;
201impl<'a, const O: u8> RECEIVE2_W<'a, O> {
202 #[doc = "Disable"]
203 #[inline(always)]
204 pub fn clear(self) -> &'a mut W {
205 self.variant(RECEIVE2_AW::CLEAR)
206 }
207}
208#[doc = "Field `RECEIVE3` reader - Write '1' to disable interrupt for event RECEIVE\\[3\\]"]
209pub type RECEIVE3_R = crate::BitReader<RECEIVE3_A>;
210#[doc = "Write '1' to disable interrupt for event RECEIVE\\[3\\]\n\nValue on reset: 0"]
211#[derive(Clone, Copy, Debug, PartialEq)]
212pub enum RECEIVE3_A {
213 #[doc = "0: Read: Disabled"]
214 DISABLED = 0,
215 #[doc = "1: Read: Enabled"]
216 ENABLED = 1,
217}
218impl From<RECEIVE3_A> for bool {
219 #[inline(always)]
220 fn from(variant: RECEIVE3_A) -> Self {
221 variant as u8 != 0
222 }
223}
224impl RECEIVE3_R {
225 #[doc = "Get enumerated values variant"]
226 #[inline(always)]
227 pub fn variant(&self) -> RECEIVE3_A {
228 match self.bits {
229 false => RECEIVE3_A::DISABLED,
230 true => RECEIVE3_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 == RECEIVE3_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 == RECEIVE3_A::ENABLED
242 }
243}
244#[doc = "Write '1' to disable interrupt for event RECEIVE\\[3\\]\n\nValue on reset: 0"]
245#[derive(Clone, Copy, Debug, PartialEq)]
246pub enum RECEIVE3_AW {
247 #[doc = "1: Disable"]
248 CLEAR = 1,
249}
250impl From<RECEIVE3_AW> for bool {
251 #[inline(always)]
252 fn from(variant: RECEIVE3_AW) -> Self {
253 variant as u8 != 0
254 }
255}
256#[doc = "Field `RECEIVE3` writer - Write '1' to disable interrupt for event RECEIVE\\[3\\]"]
257pub type RECEIVE3_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE3_AW, O>;
258impl<'a, const O: u8> RECEIVE3_W<'a, O> {
259 #[doc = "Disable"]
260 #[inline(always)]
261 pub fn clear(self) -> &'a mut W {
262 self.variant(RECEIVE3_AW::CLEAR)
263 }
264}
265#[doc = "Field `RECEIVE4` reader - Write '1' to disable interrupt for event RECEIVE\\[4\\]"]
266pub type RECEIVE4_R = crate::BitReader<RECEIVE4_A>;
267#[doc = "Write '1' to disable interrupt for event RECEIVE\\[4\\]\n\nValue on reset: 0"]
268#[derive(Clone, Copy, Debug, PartialEq)]
269pub enum RECEIVE4_A {
270 #[doc = "0: Read: Disabled"]
271 DISABLED = 0,
272 #[doc = "1: Read: Enabled"]
273 ENABLED = 1,
274}
275impl From<RECEIVE4_A> for bool {
276 #[inline(always)]
277 fn from(variant: RECEIVE4_A) -> Self {
278 variant as u8 != 0
279 }
280}
281impl RECEIVE4_R {
282 #[doc = "Get enumerated values variant"]
283 #[inline(always)]
284 pub fn variant(&self) -> RECEIVE4_A {
285 match self.bits {
286 false => RECEIVE4_A::DISABLED,
287 true => RECEIVE4_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 == RECEIVE4_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 == RECEIVE4_A::ENABLED
299 }
300}
301#[doc = "Write '1' to disable interrupt for event RECEIVE\\[4\\]\n\nValue on reset: 0"]
302#[derive(Clone, Copy, Debug, PartialEq)]
303pub enum RECEIVE4_AW {
304 #[doc = "1: Disable"]
305 CLEAR = 1,
306}
307impl From<RECEIVE4_AW> for bool {
308 #[inline(always)]
309 fn from(variant: RECEIVE4_AW) -> Self {
310 variant as u8 != 0
311 }
312}
313#[doc = "Field `RECEIVE4` writer - Write '1' to disable interrupt for event RECEIVE\\[4\\]"]
314pub type RECEIVE4_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE4_AW, O>;
315impl<'a, const O: u8> RECEIVE4_W<'a, O> {
316 #[doc = "Disable"]
317 #[inline(always)]
318 pub fn clear(self) -> &'a mut W {
319 self.variant(RECEIVE4_AW::CLEAR)
320 }
321}
322#[doc = "Field `RECEIVE5` reader - Write '1' to disable interrupt for event RECEIVE\\[5\\]"]
323pub type RECEIVE5_R = crate::BitReader<RECEIVE5_A>;
324#[doc = "Write '1' to disable interrupt for event RECEIVE\\[5\\]\n\nValue on reset: 0"]
325#[derive(Clone, Copy, Debug, PartialEq)]
326pub enum RECEIVE5_A {
327 #[doc = "0: Read: Disabled"]
328 DISABLED = 0,
329 #[doc = "1: Read: Enabled"]
330 ENABLED = 1,
331}
332impl From<RECEIVE5_A> for bool {
333 #[inline(always)]
334 fn from(variant: RECEIVE5_A) -> Self {
335 variant as u8 != 0
336 }
337}
338impl RECEIVE5_R {
339 #[doc = "Get enumerated values variant"]
340 #[inline(always)]
341 pub fn variant(&self) -> RECEIVE5_A {
342 match self.bits {
343 false => RECEIVE5_A::DISABLED,
344 true => RECEIVE5_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 == RECEIVE5_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 == RECEIVE5_A::ENABLED
356 }
357}
358#[doc = "Write '1' to disable interrupt for event RECEIVE\\[5\\]\n\nValue on reset: 0"]
359#[derive(Clone, Copy, Debug, PartialEq)]
360pub enum RECEIVE5_AW {
361 #[doc = "1: Disable"]
362 CLEAR = 1,
363}
364impl From<RECEIVE5_AW> for bool {
365 #[inline(always)]
366 fn from(variant: RECEIVE5_AW) -> Self {
367 variant as u8 != 0
368 }
369}
370#[doc = "Field `RECEIVE5` writer - Write '1' to disable interrupt for event RECEIVE\\[5\\]"]
371pub type RECEIVE5_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE5_AW, O>;
372impl<'a, const O: u8> RECEIVE5_W<'a, O> {
373 #[doc = "Disable"]
374 #[inline(always)]
375 pub fn clear(self) -> &'a mut W {
376 self.variant(RECEIVE5_AW::CLEAR)
377 }
378}
379#[doc = "Field `RECEIVE6` reader - Write '1' to disable interrupt for event RECEIVE\\[6\\]"]
380pub type RECEIVE6_R = crate::BitReader<RECEIVE6_A>;
381#[doc = "Write '1' to disable interrupt for event RECEIVE\\[6\\]\n\nValue on reset: 0"]
382#[derive(Clone, Copy, Debug, PartialEq)]
383pub enum RECEIVE6_A {
384 #[doc = "0: Read: Disabled"]
385 DISABLED = 0,
386 #[doc = "1: Read: Enabled"]
387 ENABLED = 1,
388}
389impl From<RECEIVE6_A> for bool {
390 #[inline(always)]
391 fn from(variant: RECEIVE6_A) -> Self {
392 variant as u8 != 0
393 }
394}
395impl RECEIVE6_R {
396 #[doc = "Get enumerated values variant"]
397 #[inline(always)]
398 pub fn variant(&self) -> RECEIVE6_A {
399 match self.bits {
400 false => RECEIVE6_A::DISABLED,
401 true => RECEIVE6_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 == RECEIVE6_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 == RECEIVE6_A::ENABLED
413 }
414}
415#[doc = "Write '1' to disable interrupt for event RECEIVE\\[6\\]\n\nValue on reset: 0"]
416#[derive(Clone, Copy, Debug, PartialEq)]
417pub enum RECEIVE6_AW {
418 #[doc = "1: Disable"]
419 CLEAR = 1,
420}
421impl From<RECEIVE6_AW> for bool {
422 #[inline(always)]
423 fn from(variant: RECEIVE6_AW) -> Self {
424 variant as u8 != 0
425 }
426}
427#[doc = "Field `RECEIVE6` writer - Write '1' to disable interrupt for event RECEIVE\\[6\\]"]
428pub type RECEIVE6_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE6_AW, O>;
429impl<'a, const O: u8> RECEIVE6_W<'a, O> {
430 #[doc = "Disable"]
431 #[inline(always)]
432 pub fn clear(self) -> &'a mut W {
433 self.variant(RECEIVE6_AW::CLEAR)
434 }
435}
436#[doc = "Field `RECEIVE7` reader - Write '1' to disable interrupt for event RECEIVE\\[7\\]"]
437pub type RECEIVE7_R = crate::BitReader<RECEIVE7_A>;
438#[doc = "Write '1' to disable interrupt for event RECEIVE\\[7\\]\n\nValue on reset: 0"]
439#[derive(Clone, Copy, Debug, PartialEq)]
440pub enum RECEIVE7_A {
441 #[doc = "0: Read: Disabled"]
442 DISABLED = 0,
443 #[doc = "1: Read: Enabled"]
444 ENABLED = 1,
445}
446impl From<RECEIVE7_A> for bool {
447 #[inline(always)]
448 fn from(variant: RECEIVE7_A) -> Self {
449 variant as u8 != 0
450 }
451}
452impl RECEIVE7_R {
453 #[doc = "Get enumerated values variant"]
454 #[inline(always)]
455 pub fn variant(&self) -> RECEIVE7_A {
456 match self.bits {
457 false => RECEIVE7_A::DISABLED,
458 true => RECEIVE7_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 == RECEIVE7_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 == RECEIVE7_A::ENABLED
470 }
471}
472#[doc = "Write '1' to disable interrupt for event RECEIVE\\[7\\]\n\nValue on reset: 0"]
473#[derive(Clone, Copy, Debug, PartialEq)]
474pub enum RECEIVE7_AW {
475 #[doc = "1: Disable"]
476 CLEAR = 1,
477}
478impl From<RECEIVE7_AW> for bool {
479 #[inline(always)]
480 fn from(variant: RECEIVE7_AW) -> Self {
481 variant as u8 != 0
482 }
483}
484#[doc = "Field `RECEIVE7` writer - Write '1' to disable interrupt for event RECEIVE\\[7\\]"]
485pub type RECEIVE7_W<'a, const O: u8> = crate::BitWriter<'a, u32, INTENCLR_SPEC, RECEIVE7_AW, O>;
486impl<'a, const O: u8> RECEIVE7_W<'a, O> {
487 #[doc = "Disable"]
488 #[inline(always)]
489 pub fn clear(self) -> &'a mut W {
490 self.variant(RECEIVE7_AW::CLEAR)
491 }
492}
493impl R {
494 #[doc = "Bit 0 - Write '1' to disable interrupt for event RECEIVE\\[0\\]"]
495 #[inline(always)]
496 pub fn receive0(&self) -> RECEIVE0_R {
497 RECEIVE0_R::new((self.bits & 1) != 0)
498 }
499 #[doc = "Bit 1 - Write '1' to disable interrupt for event RECEIVE\\[1\\]"]
500 #[inline(always)]
501 pub fn receive1(&self) -> RECEIVE1_R {
502 RECEIVE1_R::new(((self.bits >> 1) & 1) != 0)
503 }
504 #[doc = "Bit 2 - Write '1' to disable interrupt for event RECEIVE\\[2\\]"]
505 #[inline(always)]
506 pub fn receive2(&self) -> RECEIVE2_R {
507 RECEIVE2_R::new(((self.bits >> 2) & 1) != 0)
508 }
509 #[doc = "Bit 3 - Write '1' to disable interrupt for event RECEIVE\\[3\\]"]
510 #[inline(always)]
511 pub fn receive3(&self) -> RECEIVE3_R {
512 RECEIVE3_R::new(((self.bits >> 3) & 1) != 0)
513 }
514 #[doc = "Bit 4 - Write '1' to disable interrupt for event RECEIVE\\[4\\]"]
515 #[inline(always)]
516 pub fn receive4(&self) -> RECEIVE4_R {
517 RECEIVE4_R::new(((self.bits >> 4) & 1) != 0)
518 }
519 #[doc = "Bit 5 - Write '1' to disable interrupt for event RECEIVE\\[5\\]"]
520 #[inline(always)]
521 pub fn receive5(&self) -> RECEIVE5_R {
522 RECEIVE5_R::new(((self.bits >> 5) & 1) != 0)
523 }
524 #[doc = "Bit 6 - Write '1' to disable interrupt for event RECEIVE\\[6\\]"]
525 #[inline(always)]
526 pub fn receive6(&self) -> RECEIVE6_R {
527 RECEIVE6_R::new(((self.bits >> 6) & 1) != 0)
528 }
529 #[doc = "Bit 7 - Write '1' to disable interrupt for event RECEIVE\\[7\\]"]
530 #[inline(always)]
531 pub fn receive7(&self) -> RECEIVE7_R {
532 RECEIVE7_R::new(((self.bits >> 7) & 1) != 0)
533 }
534}
535impl W {
536 #[doc = "Bit 0 - Write '1' to disable interrupt for event RECEIVE\\[0\\]"]
537 #[inline(always)]
538 pub fn receive0(&mut self) -> RECEIVE0_W<0> {
539 RECEIVE0_W::new(self)
540 }
541 #[doc = "Bit 1 - Write '1' to disable interrupt for event RECEIVE\\[1\\]"]
542 #[inline(always)]
543 pub fn receive1(&mut self) -> RECEIVE1_W<1> {
544 RECEIVE1_W::new(self)
545 }
546 #[doc = "Bit 2 - Write '1' to disable interrupt for event RECEIVE\\[2\\]"]
547 #[inline(always)]
548 pub fn receive2(&mut self) -> RECEIVE2_W<2> {
549 RECEIVE2_W::new(self)
550 }
551 #[doc = "Bit 3 - Write '1' to disable interrupt for event RECEIVE\\[3\\]"]
552 #[inline(always)]
553 pub fn receive3(&mut self) -> RECEIVE3_W<3> {
554 RECEIVE3_W::new(self)
555 }
556 #[doc = "Bit 4 - Write '1' to disable interrupt for event RECEIVE\\[4\\]"]
557 #[inline(always)]
558 pub fn receive4(&mut self) -> RECEIVE4_W<4> {
559 RECEIVE4_W::new(self)
560 }
561 #[doc = "Bit 5 - Write '1' to disable interrupt for event RECEIVE\\[5\\]"]
562 #[inline(always)]
563 pub fn receive5(&mut self) -> RECEIVE5_W<5> {
564 RECEIVE5_W::new(self)
565 }
566 #[doc = "Bit 6 - Write '1' to disable interrupt for event RECEIVE\\[6\\]"]
567 #[inline(always)]
568 pub fn receive6(&mut self) -> RECEIVE6_W<6> {
569 RECEIVE6_W::new(self)
570 }
571 #[doc = "Bit 7 - Write '1' to disable interrupt for event RECEIVE\\[7\\]"]
572 #[inline(always)]
573 pub fn receive7(&mut self) -> RECEIVE7_W<7> {
574 RECEIVE7_W::new(self)
575 }
576 #[doc = "Writes raw bits to the register."]
577 #[inline(always)]
578 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
579 self.0.bits(bits);
580 self
581 }
582}
583#[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"]
584pub struct INTENCLR_SPEC;
585impl crate::RegisterSpec for INTENCLR_SPEC {
586 type Ux = u32;
587}
588#[doc = "`read()` method returns [intenclr::R](R) reader structure"]
589impl crate::Readable for INTENCLR_SPEC {
590 type Reader = R;
591}
592#[doc = "`write(|w| ..)` method takes [intenclr::W](W) writer structure"]
593impl crate::Writable for INTENCLR_SPEC {
594 type Writer = W;
595}
596#[doc = "`reset()` method sets INTENCLR to value 0"]
597impl crate::Resettable for INTENCLR_SPEC {
598 #[inline(always)]
599 fn reset_value() -> Self::Ux {
600 0
601 }
602}