1#[doc = "Register `INTE` reader"]
2pub type R = crate::R<INTE_SPEC>;
3#[doc = "Register `INTE` writer"]
4pub type W = crate::W<INTE_SPEC>;
5#[doc = "Period match while counting up enable\n\nValue on reset: 0"]
6#[derive(Clone, Copy, Debug, PartialEq, Eq)]
7pub enum PME_A {
8 #[doc = "0: Period Match interrupt is disabled"]
9 VALUE1 = 0,
10 #[doc = "1: Period Match interrupt is enabled"]
11 VALUE2 = 1,
12}
13impl From<PME_A> for bool {
14 #[inline(always)]
15 fn from(variant: PME_A) -> Self {
16 variant as u8 != 0
17 }
18}
19#[doc = "Field `PME` reader - Period match while counting up enable"]
20pub type PME_R = crate::BitReader<PME_A>;
21impl PME_R {
22 #[doc = "Get enumerated values variant"]
23 #[inline(always)]
24 pub const fn variant(&self) -> PME_A {
25 match self.bits {
26 false => PME_A::VALUE1,
27 true => PME_A::VALUE2,
28 }
29 }
30 #[doc = "Period Match interrupt is disabled"]
31 #[inline(always)]
32 pub fn is_value1(&self) -> bool {
33 *self == PME_A::VALUE1
34 }
35 #[doc = "Period Match interrupt is enabled"]
36 #[inline(always)]
37 pub fn is_value2(&self) -> bool {
38 *self == PME_A::VALUE2
39 }
40}
41#[doc = "Field `PME` writer - Period match while counting up enable"]
42pub type PME_W<'a, REG> = crate::BitWriter<'a, REG, PME_A>;
43impl<'a, REG> PME_W<'a, REG>
44where
45 REG: crate::Writable + crate::RegisterSpec,
46{
47 #[doc = "Period Match interrupt is disabled"]
48 #[inline(always)]
49 pub fn value1(self) -> &'a mut crate::W<REG> {
50 self.variant(PME_A::VALUE1)
51 }
52 #[doc = "Period Match interrupt is enabled"]
53 #[inline(always)]
54 pub fn value2(self) -> &'a mut crate::W<REG> {
55 self.variant(PME_A::VALUE2)
56 }
57}
58#[doc = "One match while counting down enable\n\nValue on reset: 0"]
59#[derive(Clone, Copy, Debug, PartialEq, Eq)]
60pub enum OME_A {
61 #[doc = "0: One Match interrupt is disabled"]
62 VALUE1 = 0,
63 #[doc = "1: One Match interrupt is enabled"]
64 VALUE2 = 1,
65}
66impl From<OME_A> for bool {
67 #[inline(always)]
68 fn from(variant: OME_A) -> Self {
69 variant as u8 != 0
70 }
71}
72#[doc = "Field `OME` reader - One match while counting down enable"]
73pub type OME_R = crate::BitReader<OME_A>;
74impl OME_R {
75 #[doc = "Get enumerated values variant"]
76 #[inline(always)]
77 pub const fn variant(&self) -> OME_A {
78 match self.bits {
79 false => OME_A::VALUE1,
80 true => OME_A::VALUE2,
81 }
82 }
83 #[doc = "One Match interrupt is disabled"]
84 #[inline(always)]
85 pub fn is_value1(&self) -> bool {
86 *self == OME_A::VALUE1
87 }
88 #[doc = "One Match interrupt is enabled"]
89 #[inline(always)]
90 pub fn is_value2(&self) -> bool {
91 *self == OME_A::VALUE2
92 }
93}
94#[doc = "Field `OME` writer - One match while counting down enable"]
95pub type OME_W<'a, REG> = crate::BitWriter<'a, REG, OME_A>;
96impl<'a, REG> OME_W<'a, REG>
97where
98 REG: crate::Writable + crate::RegisterSpec,
99{
100 #[doc = "One Match interrupt is disabled"]
101 #[inline(always)]
102 pub fn value1(self) -> &'a mut crate::W<REG> {
103 self.variant(OME_A::VALUE1)
104 }
105 #[doc = "One Match interrupt is enabled"]
106 #[inline(always)]
107 pub fn value2(self) -> &'a mut crate::W<REG> {
108 self.variant(OME_A::VALUE2)
109 }
110}
111#[doc = "Channel 1 Compare match while counting up enable\n\nValue on reset: 0"]
112#[derive(Clone, Copy, Debug, PartialEq, Eq)]
113pub enum CMU1E_A {
114 #[doc = "0: Compare Match while counting up interrupt is disabled"]
115 VALUE1 = 0,
116 #[doc = "1: Compare Match while counting up interrupt is enabled"]
117 VALUE2 = 1,
118}
119impl From<CMU1E_A> for bool {
120 #[inline(always)]
121 fn from(variant: CMU1E_A) -> Self {
122 variant as u8 != 0
123 }
124}
125#[doc = "Field `CMU1E` reader - Channel 1 Compare match while counting up enable"]
126pub type CMU1E_R = crate::BitReader<CMU1E_A>;
127impl CMU1E_R {
128 #[doc = "Get enumerated values variant"]
129 #[inline(always)]
130 pub const fn variant(&self) -> CMU1E_A {
131 match self.bits {
132 false => CMU1E_A::VALUE1,
133 true => CMU1E_A::VALUE2,
134 }
135 }
136 #[doc = "Compare Match while counting up interrupt is disabled"]
137 #[inline(always)]
138 pub fn is_value1(&self) -> bool {
139 *self == CMU1E_A::VALUE1
140 }
141 #[doc = "Compare Match while counting up interrupt is enabled"]
142 #[inline(always)]
143 pub fn is_value2(&self) -> bool {
144 *self == CMU1E_A::VALUE2
145 }
146}
147#[doc = "Field `CMU1E` writer - Channel 1 Compare match while counting up enable"]
148pub type CMU1E_W<'a, REG> = crate::BitWriter<'a, REG, CMU1E_A>;
149impl<'a, REG> CMU1E_W<'a, REG>
150where
151 REG: crate::Writable + crate::RegisterSpec,
152{
153 #[doc = "Compare Match while counting up interrupt is disabled"]
154 #[inline(always)]
155 pub fn value1(self) -> &'a mut crate::W<REG> {
156 self.variant(CMU1E_A::VALUE1)
157 }
158 #[doc = "Compare Match while counting up interrupt is enabled"]
159 #[inline(always)]
160 pub fn value2(self) -> &'a mut crate::W<REG> {
161 self.variant(CMU1E_A::VALUE2)
162 }
163}
164#[doc = "Channel 1 Compare match while counting down enable\n\nValue on reset: 0"]
165#[derive(Clone, Copy, Debug, PartialEq, Eq)]
166pub enum CMD1E_A {
167 #[doc = "0: Compare Match while counting down interrupt is disabled"]
168 VALUE1 = 0,
169 #[doc = "1: Compare Match while counting down interrupt is enabled"]
170 VALUE2 = 1,
171}
172impl From<CMD1E_A> for bool {
173 #[inline(always)]
174 fn from(variant: CMD1E_A) -> Self {
175 variant as u8 != 0
176 }
177}
178#[doc = "Field `CMD1E` reader - Channel 1 Compare match while counting down enable"]
179pub type CMD1E_R = crate::BitReader<CMD1E_A>;
180impl CMD1E_R {
181 #[doc = "Get enumerated values variant"]
182 #[inline(always)]
183 pub const fn variant(&self) -> CMD1E_A {
184 match self.bits {
185 false => CMD1E_A::VALUE1,
186 true => CMD1E_A::VALUE2,
187 }
188 }
189 #[doc = "Compare Match while counting down interrupt is disabled"]
190 #[inline(always)]
191 pub fn is_value1(&self) -> bool {
192 *self == CMD1E_A::VALUE1
193 }
194 #[doc = "Compare Match while counting down interrupt is enabled"]
195 #[inline(always)]
196 pub fn is_value2(&self) -> bool {
197 *self == CMD1E_A::VALUE2
198 }
199}
200#[doc = "Field `CMD1E` writer - Channel 1 Compare match while counting down enable"]
201pub type CMD1E_W<'a, REG> = crate::BitWriter<'a, REG, CMD1E_A>;
202impl<'a, REG> CMD1E_W<'a, REG>
203where
204 REG: crate::Writable + crate::RegisterSpec,
205{
206 #[doc = "Compare Match while counting down interrupt is disabled"]
207 #[inline(always)]
208 pub fn value1(self) -> &'a mut crate::W<REG> {
209 self.variant(CMD1E_A::VALUE1)
210 }
211 #[doc = "Compare Match while counting down interrupt is enabled"]
212 #[inline(always)]
213 pub fn value2(self) -> &'a mut crate::W<REG> {
214 self.variant(CMD1E_A::VALUE2)
215 }
216}
217#[doc = "Channel 2 Compare match while counting up enable\n\nValue on reset: 0"]
218#[derive(Clone, Copy, Debug, PartialEq, Eq)]
219pub enum CMU2E_A {
220 #[doc = "0: Compare Match while counting up interrupt is disabled"]
221 VALUE1 = 0,
222 #[doc = "1: Compare Match while counting up interrupt is enabled"]
223 VALUE2 = 1,
224}
225impl From<CMU2E_A> for bool {
226 #[inline(always)]
227 fn from(variant: CMU2E_A) -> Self {
228 variant as u8 != 0
229 }
230}
231#[doc = "Field `CMU2E` reader - Channel 2 Compare match while counting up enable"]
232pub type CMU2E_R = crate::BitReader<CMU2E_A>;
233impl CMU2E_R {
234 #[doc = "Get enumerated values variant"]
235 #[inline(always)]
236 pub const fn variant(&self) -> CMU2E_A {
237 match self.bits {
238 false => CMU2E_A::VALUE1,
239 true => CMU2E_A::VALUE2,
240 }
241 }
242 #[doc = "Compare Match while counting up interrupt is disabled"]
243 #[inline(always)]
244 pub fn is_value1(&self) -> bool {
245 *self == CMU2E_A::VALUE1
246 }
247 #[doc = "Compare Match while counting up interrupt is enabled"]
248 #[inline(always)]
249 pub fn is_value2(&self) -> bool {
250 *self == CMU2E_A::VALUE2
251 }
252}
253#[doc = "Field `CMU2E` writer - Channel 2 Compare match while counting up enable"]
254pub type CMU2E_W<'a, REG> = crate::BitWriter<'a, REG, CMU2E_A>;
255impl<'a, REG> CMU2E_W<'a, REG>
256where
257 REG: crate::Writable + crate::RegisterSpec,
258{
259 #[doc = "Compare Match while counting up interrupt is disabled"]
260 #[inline(always)]
261 pub fn value1(self) -> &'a mut crate::W<REG> {
262 self.variant(CMU2E_A::VALUE1)
263 }
264 #[doc = "Compare Match while counting up interrupt is enabled"]
265 #[inline(always)]
266 pub fn value2(self) -> &'a mut crate::W<REG> {
267 self.variant(CMU2E_A::VALUE2)
268 }
269}
270#[doc = "Channel 2 Compare match while counting down enable\n\nValue on reset: 0"]
271#[derive(Clone, Copy, Debug, PartialEq, Eq)]
272pub enum CMD2E_A {
273 #[doc = "0: Compare Match while counting down interrupt is disabled"]
274 VALUE1 = 0,
275 #[doc = "1: Compare Match while counting down interrupt is enabled"]
276 VALUE2 = 1,
277}
278impl From<CMD2E_A> for bool {
279 #[inline(always)]
280 fn from(variant: CMD2E_A) -> Self {
281 variant as u8 != 0
282 }
283}
284#[doc = "Field `CMD2E` reader - Channel 2 Compare match while counting down enable"]
285pub type CMD2E_R = crate::BitReader<CMD2E_A>;
286impl CMD2E_R {
287 #[doc = "Get enumerated values variant"]
288 #[inline(always)]
289 pub const fn variant(&self) -> CMD2E_A {
290 match self.bits {
291 false => CMD2E_A::VALUE1,
292 true => CMD2E_A::VALUE2,
293 }
294 }
295 #[doc = "Compare Match while counting down interrupt is disabled"]
296 #[inline(always)]
297 pub fn is_value1(&self) -> bool {
298 *self == CMD2E_A::VALUE1
299 }
300 #[doc = "Compare Match while counting down interrupt is enabled"]
301 #[inline(always)]
302 pub fn is_value2(&self) -> bool {
303 *self == CMD2E_A::VALUE2
304 }
305}
306#[doc = "Field `CMD2E` writer - Channel 2 Compare match while counting down enable"]
307pub type CMD2E_W<'a, REG> = crate::BitWriter<'a, REG, CMD2E_A>;
308impl<'a, REG> CMD2E_W<'a, REG>
309where
310 REG: crate::Writable + crate::RegisterSpec,
311{
312 #[doc = "Compare Match while counting down interrupt is disabled"]
313 #[inline(always)]
314 pub fn value1(self) -> &'a mut crate::W<REG> {
315 self.variant(CMD2E_A::VALUE1)
316 }
317 #[doc = "Compare Match while counting down interrupt is enabled"]
318 #[inline(always)]
319 pub fn value2(self) -> &'a mut crate::W<REG> {
320 self.variant(CMD2E_A::VALUE2)
321 }
322}
323#[doc = "Event 0 interrupt enable\n\nValue on reset: 0"]
324#[derive(Clone, Copy, Debug, PartialEq, Eq)]
325pub enum E0AE_A {
326 #[doc = "0: Event 0 detection interrupt is disabled"]
327 VALUE1 = 0,
328 #[doc = "1: Event 0 detection interrupt is enabled"]
329 VALUE2 = 1,
330}
331impl From<E0AE_A> for bool {
332 #[inline(always)]
333 fn from(variant: E0AE_A) -> Self {
334 variant as u8 != 0
335 }
336}
337#[doc = "Field `E0AE` reader - Event 0 interrupt enable"]
338pub type E0AE_R = crate::BitReader<E0AE_A>;
339impl E0AE_R {
340 #[doc = "Get enumerated values variant"]
341 #[inline(always)]
342 pub const fn variant(&self) -> E0AE_A {
343 match self.bits {
344 false => E0AE_A::VALUE1,
345 true => E0AE_A::VALUE2,
346 }
347 }
348 #[doc = "Event 0 detection interrupt is disabled"]
349 #[inline(always)]
350 pub fn is_value1(&self) -> bool {
351 *self == E0AE_A::VALUE1
352 }
353 #[doc = "Event 0 detection interrupt is enabled"]
354 #[inline(always)]
355 pub fn is_value2(&self) -> bool {
356 *self == E0AE_A::VALUE2
357 }
358}
359#[doc = "Field `E0AE` writer - Event 0 interrupt enable"]
360pub type E0AE_W<'a, REG> = crate::BitWriter<'a, REG, E0AE_A>;
361impl<'a, REG> E0AE_W<'a, REG>
362where
363 REG: crate::Writable + crate::RegisterSpec,
364{
365 #[doc = "Event 0 detection interrupt is disabled"]
366 #[inline(always)]
367 pub fn value1(self) -> &'a mut crate::W<REG> {
368 self.variant(E0AE_A::VALUE1)
369 }
370 #[doc = "Event 0 detection interrupt is enabled"]
371 #[inline(always)]
372 pub fn value2(self) -> &'a mut crate::W<REG> {
373 self.variant(E0AE_A::VALUE2)
374 }
375}
376#[doc = "Event 1 interrupt enable\n\nValue on reset: 0"]
377#[derive(Clone, Copy, Debug, PartialEq, Eq)]
378pub enum E1AE_A {
379 #[doc = "0: Event 1 detection interrupt is disabled"]
380 VALUE1 = 0,
381 #[doc = "1: Event 1 detection interrupt is enabled"]
382 VALUE2 = 1,
383}
384impl From<E1AE_A> for bool {
385 #[inline(always)]
386 fn from(variant: E1AE_A) -> Self {
387 variant as u8 != 0
388 }
389}
390#[doc = "Field `E1AE` reader - Event 1 interrupt enable"]
391pub type E1AE_R = crate::BitReader<E1AE_A>;
392impl E1AE_R {
393 #[doc = "Get enumerated values variant"]
394 #[inline(always)]
395 pub const fn variant(&self) -> E1AE_A {
396 match self.bits {
397 false => E1AE_A::VALUE1,
398 true => E1AE_A::VALUE2,
399 }
400 }
401 #[doc = "Event 1 detection interrupt is disabled"]
402 #[inline(always)]
403 pub fn is_value1(&self) -> bool {
404 *self == E1AE_A::VALUE1
405 }
406 #[doc = "Event 1 detection interrupt is enabled"]
407 #[inline(always)]
408 pub fn is_value2(&self) -> bool {
409 *self == E1AE_A::VALUE2
410 }
411}
412#[doc = "Field `E1AE` writer - Event 1 interrupt enable"]
413pub type E1AE_W<'a, REG> = crate::BitWriter<'a, REG, E1AE_A>;
414impl<'a, REG> E1AE_W<'a, REG>
415where
416 REG: crate::Writable + crate::RegisterSpec,
417{
418 #[doc = "Event 1 detection interrupt is disabled"]
419 #[inline(always)]
420 pub fn value1(self) -> &'a mut crate::W<REG> {
421 self.variant(E1AE_A::VALUE1)
422 }
423 #[doc = "Event 1 detection interrupt is enabled"]
424 #[inline(always)]
425 pub fn value2(self) -> &'a mut crate::W<REG> {
426 self.variant(E1AE_A::VALUE2)
427 }
428}
429#[doc = "Event 2 interrupt enable\n\nValue on reset: 0"]
430#[derive(Clone, Copy, Debug, PartialEq, Eq)]
431pub enum E2AE_A {
432 #[doc = "0: Event 2 detection interrupt is disabled"]
433 VALUE1 = 0,
434 #[doc = "1: Event 2 detection interrupt is enabled"]
435 VALUE2 = 1,
436}
437impl From<E2AE_A> for bool {
438 #[inline(always)]
439 fn from(variant: E2AE_A) -> Self {
440 variant as u8 != 0
441 }
442}
443#[doc = "Field `E2AE` reader - Event 2 interrupt enable"]
444pub type E2AE_R = crate::BitReader<E2AE_A>;
445impl E2AE_R {
446 #[doc = "Get enumerated values variant"]
447 #[inline(always)]
448 pub const fn variant(&self) -> E2AE_A {
449 match self.bits {
450 false => E2AE_A::VALUE1,
451 true => E2AE_A::VALUE2,
452 }
453 }
454 #[doc = "Event 2 detection interrupt is disabled"]
455 #[inline(always)]
456 pub fn is_value1(&self) -> bool {
457 *self == E2AE_A::VALUE1
458 }
459 #[doc = "Event 2 detection interrupt is enabled"]
460 #[inline(always)]
461 pub fn is_value2(&self) -> bool {
462 *self == E2AE_A::VALUE2
463 }
464}
465#[doc = "Field `E2AE` writer - Event 2 interrupt enable"]
466pub type E2AE_W<'a, REG> = crate::BitWriter<'a, REG, E2AE_A>;
467impl<'a, REG> E2AE_W<'a, REG>
468where
469 REG: crate::Writable + crate::RegisterSpec,
470{
471 #[doc = "Event 2 detection interrupt is disabled"]
472 #[inline(always)]
473 pub fn value1(self) -> &'a mut crate::W<REG> {
474 self.variant(E2AE_A::VALUE1)
475 }
476 #[doc = "Event 2 detection interrupt is enabled"]
477 #[inline(always)]
478 pub fn value2(self) -> &'a mut crate::W<REG> {
479 self.variant(E2AE_A::VALUE2)
480 }
481}
482impl R {
483 #[doc = "Bit 0 - Period match while counting up enable"]
484 #[inline(always)]
485 pub fn pme(&self) -> PME_R {
486 PME_R::new((self.bits & 1) != 0)
487 }
488 #[doc = "Bit 1 - One match while counting down enable"]
489 #[inline(always)]
490 pub fn ome(&self) -> OME_R {
491 OME_R::new(((self.bits >> 1) & 1) != 0)
492 }
493 #[doc = "Bit 2 - Channel 1 Compare match while counting up enable"]
494 #[inline(always)]
495 pub fn cmu1e(&self) -> CMU1E_R {
496 CMU1E_R::new(((self.bits >> 2) & 1) != 0)
497 }
498 #[doc = "Bit 3 - Channel 1 Compare match while counting down enable"]
499 #[inline(always)]
500 pub fn cmd1e(&self) -> CMD1E_R {
501 CMD1E_R::new(((self.bits >> 3) & 1) != 0)
502 }
503 #[doc = "Bit 4 - Channel 2 Compare match while counting up enable"]
504 #[inline(always)]
505 pub fn cmu2e(&self) -> CMU2E_R {
506 CMU2E_R::new(((self.bits >> 4) & 1) != 0)
507 }
508 #[doc = "Bit 5 - Channel 2 Compare match while counting down enable"]
509 #[inline(always)]
510 pub fn cmd2e(&self) -> CMD2E_R {
511 CMD2E_R::new(((self.bits >> 5) & 1) != 0)
512 }
513 #[doc = "Bit 8 - Event 0 interrupt enable"]
514 #[inline(always)]
515 pub fn e0ae(&self) -> E0AE_R {
516 E0AE_R::new(((self.bits >> 8) & 1) != 0)
517 }
518 #[doc = "Bit 9 - Event 1 interrupt enable"]
519 #[inline(always)]
520 pub fn e1ae(&self) -> E1AE_R {
521 E1AE_R::new(((self.bits >> 9) & 1) != 0)
522 }
523 #[doc = "Bit 10 - Event 2 interrupt enable"]
524 #[inline(always)]
525 pub fn e2ae(&self) -> E2AE_R {
526 E2AE_R::new(((self.bits >> 10) & 1) != 0)
527 }
528}
529impl W {
530 #[doc = "Bit 0 - Period match while counting up enable"]
531 #[inline(always)]
532 pub fn pme(&mut self) -> PME_W<INTE_SPEC> {
533 PME_W::new(self, 0)
534 }
535 #[doc = "Bit 1 - One match while counting down enable"]
536 #[inline(always)]
537 pub fn ome(&mut self) -> OME_W<INTE_SPEC> {
538 OME_W::new(self, 1)
539 }
540 #[doc = "Bit 2 - Channel 1 Compare match while counting up enable"]
541 #[inline(always)]
542 pub fn cmu1e(&mut self) -> CMU1E_W<INTE_SPEC> {
543 CMU1E_W::new(self, 2)
544 }
545 #[doc = "Bit 3 - Channel 1 Compare match while counting down enable"]
546 #[inline(always)]
547 pub fn cmd1e(&mut self) -> CMD1E_W<INTE_SPEC> {
548 CMD1E_W::new(self, 3)
549 }
550 #[doc = "Bit 4 - Channel 2 Compare match while counting up enable"]
551 #[inline(always)]
552 pub fn cmu2e(&mut self) -> CMU2E_W<INTE_SPEC> {
553 CMU2E_W::new(self, 4)
554 }
555 #[doc = "Bit 5 - Channel 2 Compare match while counting down enable"]
556 #[inline(always)]
557 pub fn cmd2e(&mut self) -> CMD2E_W<INTE_SPEC> {
558 CMD2E_W::new(self, 5)
559 }
560 #[doc = "Bit 8 - Event 0 interrupt enable"]
561 #[inline(always)]
562 pub fn e0ae(&mut self) -> E0AE_W<INTE_SPEC> {
563 E0AE_W::new(self, 8)
564 }
565 #[doc = "Bit 9 - Event 1 interrupt enable"]
566 #[inline(always)]
567 pub fn e1ae(&mut self) -> E1AE_W<INTE_SPEC> {
568 E1AE_W::new(self, 9)
569 }
570 #[doc = "Bit 10 - Event 2 interrupt enable"]
571 #[inline(always)]
572 pub fn e2ae(&mut self) -> E2AE_W<INTE_SPEC> {
573 E2AE_W::new(self, 10)
574 }
575}
576#[doc = "Interrupt Enable Control\n\nYou can [`read`](crate::Reg::read) this register and get [`inte::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`inte::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
577pub struct INTE_SPEC;
578impl crate::RegisterSpec for INTE_SPEC {
579 type Ux = u32;
580}
581#[doc = "`read()` method returns [`inte::R`](R) reader structure"]
582impl crate::Readable for INTE_SPEC {}
583#[doc = "`write(|w| ..)` method takes [`inte::W`](W) writer structure"]
584impl crate::Writable for INTE_SPEC {
585 type Safety = crate::Unsafe;
586 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
587 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
588}
589#[doc = "`reset()` method sets INTE to value 0"]
590impl crate::Resettable for INTE_SPEC {
591 const RESET_VALUE: u32 = 0;
592}