max32660 0.2.1

Register mappings for the Analog Devices MAX32660 Cortex-M4 microcontroller
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
#[doc = "Register `INTFL0` reader"]
pub type R = crate::R<INTFL0_SPEC>;
#[doc = "Register `INTFL0` writer"]
pub type W = crate::W<INTFL0_SPEC>;
#[doc = "Field `DONEI` reader - Transfer Done Interrupt."]
pub type DONEI_R = crate::BitReader<DONEI_A>;
#[doc = "Transfer Done Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DONEI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<DONEI_A> for bool {
    #[inline(always)]
    fn from(variant: DONEI_A) -> Self {
        variant as u8 != 0
    }
}
impl DONEI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DONEI_A {
        match self.bits {
            false => DONEI_A::INACTIVE,
            true => DONEI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == DONEI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == DONEI_A::PENDING
    }
}
#[doc = "Field `DONEI` writer - Transfer Done Interrupt."]
pub type DONEI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, DONEI_A>;
impl<'a, REG, const O: u8> DONEI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(DONEI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(DONEI_A::PENDING)
    }
}
#[doc = "Field `IRXMI` reader - Interactive Receive Interrupt."]
pub type IRXMI_R = crate::BitReader<IRXMI_A>;
#[doc = "Interactive Receive Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum IRXMI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<IRXMI_A> for bool {
    #[inline(always)]
    fn from(variant: IRXMI_A) -> Self {
        variant as u8 != 0
    }
}
impl IRXMI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> IRXMI_A {
        match self.bits {
            false => IRXMI_A::INACTIVE,
            true => IRXMI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == IRXMI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == IRXMI_A::PENDING
    }
}
#[doc = "Field `IRXMI` writer - Interactive Receive Interrupt."]
pub type IRXMI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, IRXMI_A>;
impl<'a, REG, const O: u8> IRXMI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(IRXMI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(IRXMI_A::PENDING)
    }
}
#[doc = "Field `GCI` reader - Slave General Call Address Match Interrupt."]
pub type GCI_R = crate::BitReader<GCI_A>;
#[doc = "Slave General Call Address Match Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum GCI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<GCI_A> for bool {
    #[inline(always)]
    fn from(variant: GCI_A) -> Self {
        variant as u8 != 0
    }
}
impl GCI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> GCI_A {
        match self.bits {
            false => GCI_A::INACTIVE,
            true => GCI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == GCI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == GCI_A::PENDING
    }
}
#[doc = "Field `GCI` writer - Slave General Call Address Match Interrupt."]
pub type GCI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, GCI_A>;
impl<'a, REG, const O: u8> GCI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(GCI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(GCI_A::PENDING)
    }
}
#[doc = "Field `AMI` reader - Slave Address Match Interrupt."]
pub type AMI_R = crate::BitReader<AMI_A>;
#[doc = "Slave Address Match Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum AMI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<AMI_A> for bool {
    #[inline(always)]
    fn from(variant: AMI_A) -> Self {
        variant as u8 != 0
    }
}
impl AMI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> AMI_A {
        match self.bits {
            false => AMI_A::INACTIVE,
            true => AMI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == AMI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == AMI_A::PENDING
    }
}
#[doc = "Field `AMI` writer - Slave Address Match Interrupt."]
pub type AMI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, AMI_A>;
impl<'a, REG, const O: u8> AMI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(AMI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(AMI_A::PENDING)
    }
}
#[doc = "Field `RXTHI` reader - Receive Threshold Interrupt."]
pub type RXTHI_R = crate::BitReader<RXTHI_A>;
#[doc = "Receive Threshold Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RXTHI_A {
    #[doc = "0: No interrupt is pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<RXTHI_A> for bool {
    #[inline(always)]
    fn from(variant: RXTHI_A) -> Self {
        variant as u8 != 0
    }
}
impl RXTHI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> RXTHI_A {
        match self.bits {
            false => RXTHI_A::INACTIVE,
            true => RXTHI_A::PENDING,
        }
    }
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == RXTHI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == RXTHI_A::PENDING
    }
}
#[doc = "Field `RXTHI` writer - Receive Threshold Interrupt."]
pub type RXTHI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, RXTHI_A>;
impl<'a, REG, const O: u8> RXTHI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(RXTHI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(RXTHI_A::PENDING)
    }
}
#[doc = "Field `TXTHI` reader - Transmit Threshold Interrupt."]
pub type TXTHI_R = crate::BitReader<TXTHI_A>;
#[doc = "Transmit Threshold Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TXTHI_A {
    #[doc = "0: No interrupt is pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<TXTHI_A> for bool {
    #[inline(always)]
    fn from(variant: TXTHI_A) -> Self {
        variant as u8 != 0
    }
}
impl TXTHI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TXTHI_A {
        match self.bits {
            false => TXTHI_A::INACTIVE,
            true => TXTHI_A::PENDING,
        }
    }
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == TXTHI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == TXTHI_A::PENDING
    }
}
#[doc = "Field `TXTHI` writer - Transmit Threshold Interrupt."]
pub type TXTHI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, TXTHI_A>;
impl<'a, REG, const O: u8> TXTHI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(TXTHI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(TXTHI_A::PENDING)
    }
}
#[doc = "Field `STOPI` reader - STOP Interrupt."]
pub type STOPI_R = crate::BitReader<STOPI_A>;
#[doc = "STOP Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum STOPI_A {
    #[doc = "0: No interrupt is pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<STOPI_A> for bool {
    #[inline(always)]
    fn from(variant: STOPI_A) -> Self {
        variant as u8 != 0
    }
}
impl STOPI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> STOPI_A {
        match self.bits {
            false => STOPI_A::INACTIVE,
            true => STOPI_A::PENDING,
        }
    }
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == STOPI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == STOPI_A::PENDING
    }
}
#[doc = "Field `STOPI` writer - STOP Interrupt."]
pub type STOPI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, STOPI_A>;
impl<'a, REG, const O: u8> STOPI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No interrupt is pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(STOPI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(STOPI_A::PENDING)
    }
}
#[doc = "Field `ADRACKI` reader - Address Acknowledge Interrupt."]
pub type ADRACKI_R = crate::BitReader<ADRACKI_A>;
#[doc = "Address Acknowledge Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ADRACKI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<ADRACKI_A> for bool {
    #[inline(always)]
    fn from(variant: ADRACKI_A) -> Self {
        variant as u8 != 0
    }
}
impl ADRACKI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ADRACKI_A {
        match self.bits {
            false => ADRACKI_A::INACTIVE,
            true => ADRACKI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == ADRACKI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == ADRACKI_A::PENDING
    }
}
#[doc = "Field `ADRACKI` writer - Address Acknowledge Interrupt."]
pub type ADRACKI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, ADRACKI_A>;
impl<'a, REG, const O: u8> ADRACKI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(ADRACKI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(ADRACKI_A::PENDING)
    }
}
#[doc = "Field `ARBERI` reader - Arbritation error Interrupt."]
pub type ARBERI_R = crate::BitReader<ARBERI_A>;
#[doc = "Arbritation error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ARBERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<ARBERI_A> for bool {
    #[inline(always)]
    fn from(variant: ARBERI_A) -> Self {
        variant as u8 != 0
    }
}
impl ARBERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ARBERI_A {
        match self.bits {
            false => ARBERI_A::INACTIVE,
            true => ARBERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == ARBERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == ARBERI_A::PENDING
    }
}
#[doc = "Field `ARBERI` writer - Arbritation error Interrupt."]
pub type ARBERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, ARBERI_A>;
impl<'a, REG, const O: u8> ARBERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(ARBERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(ARBERI_A::PENDING)
    }
}
#[doc = "Field `TOERI` reader - timeout Error Interrupt."]
pub type TOERI_R = crate::BitReader<TOERI_A>;
#[doc = "timeout Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TOERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<TOERI_A> for bool {
    #[inline(always)]
    fn from(variant: TOERI_A) -> Self {
        variant as u8 != 0
    }
}
impl TOERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TOERI_A {
        match self.bits {
            false => TOERI_A::INACTIVE,
            true => TOERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == TOERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == TOERI_A::PENDING
    }
}
#[doc = "Field `TOERI` writer - timeout Error Interrupt."]
pub type TOERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, TOERI_A>;
impl<'a, REG, const O: u8> TOERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(TOERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(TOERI_A::PENDING)
    }
}
#[doc = "Field `ADRERI` reader - Address NACK Error Interrupt."]
pub type ADRERI_R = crate::BitReader<ADRERI_A>;
#[doc = "Address NACK Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ADRERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<ADRERI_A> for bool {
    #[inline(always)]
    fn from(variant: ADRERI_A) -> Self {
        variant as u8 != 0
    }
}
impl ADRERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ADRERI_A {
        match self.bits {
            false => ADRERI_A::INACTIVE,
            true => ADRERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == ADRERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == ADRERI_A::PENDING
    }
}
#[doc = "Field `ADRERI` writer - Address NACK Error Interrupt."]
pub type ADRERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, ADRERI_A>;
impl<'a, REG, const O: u8> ADRERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(ADRERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(ADRERI_A::PENDING)
    }
}
#[doc = "Field `DATERI` reader - Data NACK Error Interrupt."]
pub type DATERI_R = crate::BitReader<DATERI_A>;
#[doc = "Data NACK Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DATERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<DATERI_A> for bool {
    #[inline(always)]
    fn from(variant: DATERI_A) -> Self {
        variant as u8 != 0
    }
}
impl DATERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DATERI_A {
        match self.bits {
            false => DATERI_A::INACTIVE,
            true => DATERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == DATERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == DATERI_A::PENDING
    }
}
#[doc = "Field `DATERI` writer - Data NACK Error Interrupt."]
pub type DATERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, DATERI_A>;
impl<'a, REG, const O: u8> DATERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(DATERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(DATERI_A::PENDING)
    }
}
#[doc = "Field `DNRERI` reader - Do Not Respond Error Interrupt."]
pub type DNRERI_R = crate::BitReader<DNRERI_A>;
#[doc = "Do Not Respond Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DNRERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<DNRERI_A> for bool {
    #[inline(always)]
    fn from(variant: DNRERI_A) -> Self {
        variant as u8 != 0
    }
}
impl DNRERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DNRERI_A {
        match self.bits {
            false => DNRERI_A::INACTIVE,
            true => DNRERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == DNRERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == DNRERI_A::PENDING
    }
}
#[doc = "Field `DNRERI` writer - Do Not Respond Error Interrupt."]
pub type DNRERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, DNRERI_A>;
impl<'a, REG, const O: u8> DNRERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(DNRERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(DNRERI_A::PENDING)
    }
}
#[doc = "Field `STRTERI` reader - Start Error Interrupt."]
pub type STRTERI_R = crate::BitReader<STRTERI_A>;
#[doc = "Start Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum STRTERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<STRTERI_A> for bool {
    #[inline(always)]
    fn from(variant: STRTERI_A) -> Self {
        variant as u8 != 0
    }
}
impl STRTERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> STRTERI_A {
        match self.bits {
            false => STRTERI_A::INACTIVE,
            true => STRTERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == STRTERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == STRTERI_A::PENDING
    }
}
#[doc = "Field `STRTERI` writer - Start Error Interrupt."]
pub type STRTERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, STRTERI_A>;
impl<'a, REG, const O: u8> STRTERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(STRTERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(STRTERI_A::PENDING)
    }
}
#[doc = "Field `STOPERI` reader - Stop Error Interrupt."]
pub type STOPERI_R = crate::BitReader<STOPERI_A>;
#[doc = "Stop Error Interrupt.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum STOPERI_A {
    #[doc = "0: No Interrupt is Pending."]
    INACTIVE = 0,
    #[doc = "1: An interrupt is pending."]
    PENDING = 1,
}
impl From<STOPERI_A> for bool {
    #[inline(always)]
    fn from(variant: STOPERI_A) -> Self {
        variant as u8 != 0
    }
}
impl STOPERI_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> STOPERI_A {
        match self.bits {
            false => STOPERI_A::INACTIVE,
            true => STOPERI_A::PENDING,
        }
    }
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn is_inactive(&self) -> bool {
        *self == STOPERI_A::INACTIVE
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn is_pending(&self) -> bool {
        *self == STOPERI_A::PENDING
    }
}
#[doc = "Field `STOPERI` writer - Stop Error Interrupt."]
pub type STOPERI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, STOPERI_A>;
impl<'a, REG, const O: u8> STOPERI_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "No Interrupt is Pending."]
    #[inline(always)]
    pub fn inactive(self) -> &'a mut crate::W<REG> {
        self.variant(STOPERI_A::INACTIVE)
    }
    #[doc = "An interrupt is pending."]
    #[inline(always)]
    pub fn pending(self) -> &'a mut crate::W<REG> {
        self.variant(STOPERI_A::PENDING)
    }
}
#[doc = "Field `TXLOI` reader - Transmit Lock Out Interrupt."]
pub type TXLOI_R = crate::BitReader;
#[doc = "Field `TXLOI` writer - Transmit Lock Out Interrupt."]
pub type TXLOI_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `MAMI` reader - Multiple Slave Address Match Interrupt."]
pub type MAMI_R = crate::FieldReader;
#[doc = "Field `MAMI` writer - Multiple Slave Address Match Interrupt."]
pub type MAMI_W<'a, REG, const O: u8> = crate::FieldWriter<'a, REG, 4, O>;
impl R {
    #[doc = "Bit 0 - Transfer Done Interrupt."]
    #[inline(always)]
    pub fn donei(&self) -> DONEI_R {
        DONEI_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Interactive Receive Interrupt."]
    #[inline(always)]
    pub fn irxmi(&self) -> IRXMI_R {
        IRXMI_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Slave General Call Address Match Interrupt."]
    #[inline(always)]
    pub fn gci(&self) -> GCI_R {
        GCI_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Slave Address Match Interrupt."]
    #[inline(always)]
    pub fn ami(&self) -> AMI_R {
        AMI_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Receive Threshold Interrupt."]
    #[inline(always)]
    pub fn rxthi(&self) -> RXTHI_R {
        RXTHI_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Transmit Threshold Interrupt."]
    #[inline(always)]
    pub fn txthi(&self) -> TXTHI_R {
        TXTHI_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - STOP Interrupt."]
    #[inline(always)]
    pub fn stopi(&self) -> STOPI_R {
        STOPI_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Address Acknowledge Interrupt."]
    #[inline(always)]
    pub fn adracki(&self) -> ADRACKI_R {
        ADRACKI_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Arbritation error Interrupt."]
    #[inline(always)]
    pub fn arberi(&self) -> ARBERI_R {
        ARBERI_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - timeout Error Interrupt."]
    #[inline(always)]
    pub fn toeri(&self) -> TOERI_R {
        TOERI_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Address NACK Error Interrupt."]
    #[inline(always)]
    pub fn adreri(&self) -> ADRERI_R {
        ADRERI_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Data NACK Error Interrupt."]
    #[inline(always)]
    pub fn dateri(&self) -> DATERI_R {
        DATERI_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 12 - Do Not Respond Error Interrupt."]
    #[inline(always)]
    pub fn dnreri(&self) -> DNRERI_R {
        DNRERI_R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Start Error Interrupt."]
    #[inline(always)]
    pub fn strteri(&self) -> STRTERI_R {
        STRTERI_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Stop Error Interrupt."]
    #[inline(always)]
    pub fn stoperi(&self) -> STOPERI_R {
        STOPERI_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Transmit Lock Out Interrupt."]
    #[inline(always)]
    pub fn txloi(&self) -> TXLOI_R {
        TXLOI_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bits 16:19 - Multiple Slave Address Match Interrupt."]
    #[inline(always)]
    pub fn mami(&self) -> MAMI_R {
        MAMI_R::new(((self.bits >> 16) & 0x0f) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Transfer Done Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn donei(&mut self) -> DONEI_W<INTFL0_SPEC, 0> {
        DONEI_W::new(self)
    }
    #[doc = "Bit 1 - Interactive Receive Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn irxmi(&mut self) -> IRXMI_W<INTFL0_SPEC, 1> {
        IRXMI_W::new(self)
    }
    #[doc = "Bit 2 - Slave General Call Address Match Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn gci(&mut self) -> GCI_W<INTFL0_SPEC, 2> {
        GCI_W::new(self)
    }
    #[doc = "Bit 3 - Slave Address Match Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn ami(&mut self) -> AMI_W<INTFL0_SPEC, 3> {
        AMI_W::new(self)
    }
    #[doc = "Bit 4 - Receive Threshold Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn rxthi(&mut self) -> RXTHI_W<INTFL0_SPEC, 4> {
        RXTHI_W::new(self)
    }
    #[doc = "Bit 5 - Transmit Threshold Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn txthi(&mut self) -> TXTHI_W<INTFL0_SPEC, 5> {
        TXTHI_W::new(self)
    }
    #[doc = "Bit 6 - STOP Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn stopi(&mut self) -> STOPI_W<INTFL0_SPEC, 6> {
        STOPI_W::new(self)
    }
    #[doc = "Bit 7 - Address Acknowledge Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn adracki(&mut self) -> ADRACKI_W<INTFL0_SPEC, 7> {
        ADRACKI_W::new(self)
    }
    #[doc = "Bit 8 - Arbritation error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn arberi(&mut self) -> ARBERI_W<INTFL0_SPEC, 8> {
        ARBERI_W::new(self)
    }
    #[doc = "Bit 9 - timeout Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn toeri(&mut self) -> TOERI_W<INTFL0_SPEC, 9> {
        TOERI_W::new(self)
    }
    #[doc = "Bit 10 - Address NACK Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn adreri(&mut self) -> ADRERI_W<INTFL0_SPEC, 10> {
        ADRERI_W::new(self)
    }
    #[doc = "Bit 11 - Data NACK Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn dateri(&mut self) -> DATERI_W<INTFL0_SPEC, 11> {
        DATERI_W::new(self)
    }
    #[doc = "Bit 12 - Do Not Respond Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn dnreri(&mut self) -> DNRERI_W<INTFL0_SPEC, 12> {
        DNRERI_W::new(self)
    }
    #[doc = "Bit 13 - Start Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn strteri(&mut self) -> STRTERI_W<INTFL0_SPEC, 13> {
        STRTERI_W::new(self)
    }
    #[doc = "Bit 14 - Stop Error Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn stoperi(&mut self) -> STOPERI_W<INTFL0_SPEC, 14> {
        STOPERI_W::new(self)
    }
    #[doc = "Bit 15 - Transmit Lock Out Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn txloi(&mut self) -> TXLOI_W<INTFL0_SPEC, 15> {
        TXLOI_W::new(self)
    }
    #[doc = "Bits 16:19 - Multiple Slave Address Match Interrupt."]
    #[inline(always)]
    #[must_use]
    pub fn mami(&mut self) -> MAMI_W<INTFL0_SPEC, 16> {
        MAMI_W::new(self)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "Interrupt Status.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`intfl0::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`intfl0::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct INTFL0_SPEC;
impl crate::RegisterSpec for INTFL0_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`intfl0::R`](R) reader structure"]
impl crate::Readable for INTFL0_SPEC {}
#[doc = "`write(|w| ..)` method takes [`intfl0::W`](W) writer structure"]
impl crate::Writable for INTFL0_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets INTFL0 to value 0"]
impl crate::Resettable for INTFL0_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}