sam3x8e-pac 0.1.6-dev

Peripheral Access Crate (PAC) for the Atmel SAM3X8E.
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
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
#[doc = "Control Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cr(pub u32);
impl Cr {
    #[doc = "SPI Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn spien(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Enable"]
    #[inline(always)]
    pub const fn set_spien(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "SPI Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn spidis(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Disable"]
    #[inline(always)]
    pub const fn set_spidis(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "SPI Software Reset"]
    #[must_use]
    #[inline(always)]
    pub const fn swrst(&self) -> bool {
        let val = (self.0 >> 7usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Software Reset"]
    #[inline(always)]
    pub const fn set_swrst(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 7usize)) | (((val as u32) & 0x01) << 7usize);
    }
    #[doc = "Last Transfer"]
    #[must_use]
    #[inline(always)]
    pub const fn lastxfer(&self) -> bool {
        let val = (self.0 >> 24usize) & 0x01;
        val != 0
    }
    #[doc = "Last Transfer"]
    #[inline(always)]
    pub const fn set_lastxfer(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 24usize)) | (((val as u32) & 0x01) << 24usize);
    }
}
impl Default for Cr {
    #[inline(always)]
    fn default() -> Cr {
        Cr(0)
    }
}
impl core::fmt::Debug for Cr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Cr")
            .field("spien", &self.spien())
            .field("spidis", &self.spidis())
            .field("swrst", &self.swrst())
            .field("lastxfer", &self.lastxfer())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Cr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Cr {{ spien: {=bool:?}, spidis: {=bool:?}, swrst: {=bool:?}, lastxfer: {=bool:?} }}",
            self.spien(),
            self.spidis(),
            self.swrst(),
            self.lastxfer()
        )
    }
}
#[doc = "Chip Select Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Csr(pub u32);
impl Csr {
    #[doc = "Clock Polarity"]
    #[must_use]
    #[inline(always)]
    pub const fn cpol(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Clock Polarity"]
    #[inline(always)]
    pub const fn set_cpol(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Clock Phase"]
    #[must_use]
    #[inline(always)]
    pub const fn ncpha(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "Clock Phase"]
    #[inline(always)]
    pub const fn set_ncpha(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Chip Select Not Active After Transfer (Ignored if CSAAT = 1)"]
    #[must_use]
    #[inline(always)]
    pub const fn csnaat(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Chip Select Not Active After Transfer (Ignored if CSAAT = 1)"]
    #[inline(always)]
    pub const fn set_csnaat(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Chip Select Active After Transfer"]
    #[must_use]
    #[inline(always)]
    pub const fn csaat(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Chip Select Active After Transfer"]
    #[inline(always)]
    pub const fn set_csaat(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "Bits Per Transfer"]
    #[must_use]
    #[inline(always)]
    pub const fn bits(&self) -> super::vals::Bits {
        let val = (self.0 >> 4usize) & 0x0f;
        super::vals::Bits::from_bits(val as u8)
    }
    #[doc = "Bits Per Transfer"]
    #[inline(always)]
    pub const fn set_bits(&mut self, val: super::vals::Bits) {
        self.0 = (self.0 & !(0x0f << 4usize)) | (((val.to_bits() as u32) & 0x0f) << 4usize);
    }
    #[doc = "Serial Clock Baud Rate"]
    #[must_use]
    #[inline(always)]
    pub const fn scbr(&self) -> u8 {
        let val = (self.0 >> 8usize) & 0xff;
        val as u8
    }
    #[doc = "Serial Clock Baud Rate"]
    #[inline(always)]
    pub const fn set_scbr(&mut self, val: u8) {
        self.0 = (self.0 & !(0xff << 8usize)) | (((val as u32) & 0xff) << 8usize);
    }
    #[doc = "Delay Before SPCK"]
    #[must_use]
    #[inline(always)]
    pub const fn dlybs(&self) -> u8 {
        let val = (self.0 >> 16usize) & 0xff;
        val as u8
    }
    #[doc = "Delay Before SPCK"]
    #[inline(always)]
    pub const fn set_dlybs(&mut self, val: u8) {
        self.0 = (self.0 & !(0xff << 16usize)) | (((val as u32) & 0xff) << 16usize);
    }
    #[doc = "Delay Between Consecutive Transfers"]
    #[must_use]
    #[inline(always)]
    pub const fn dlybct(&self) -> u8 {
        let val = (self.0 >> 24usize) & 0xff;
        val as u8
    }
    #[doc = "Delay Between Consecutive Transfers"]
    #[inline(always)]
    pub const fn set_dlybct(&mut self, val: u8) {
        self.0 = (self.0 & !(0xff << 24usize)) | (((val as u32) & 0xff) << 24usize);
    }
}
impl Default for Csr {
    #[inline(always)]
    fn default() -> Csr {
        Csr(0)
    }
}
impl core::fmt::Debug for Csr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Csr")
            .field("cpol", &self.cpol())
            .field("ncpha", &self.ncpha())
            .field("csnaat", &self.csnaat())
            .field("csaat", &self.csaat())
            .field("bits", &self.bits())
            .field("scbr", &self.scbr())
            .field("dlybs", &self.dlybs())
            .field("dlybct", &self.dlybct())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Csr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Csr {{ cpol: {=bool:?}, ncpha: {=bool:?}, csnaat: {=bool:?}, csaat: {=bool:?}, bits: {:?}, scbr: {=u8:?}, dlybs: {=u8:?}, dlybct: {=u8:?} }}",
            self.cpol(),
            self.ncpha(),
            self.csnaat(),
            self.csaat(),
            self.bits(),
            self.scbr(),
            self.dlybs(),
            self.dlybct()
        )
    }
}
#[doc = "Interrupt Disable Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Idr(pub u32);
impl Idr {
    #[doc = "Receive Data Register Full Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn rdrf(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Receive Data Register Full Interrupt Disable"]
    #[inline(always)]
    pub const fn set_rdrf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn tdre(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Disable"]
    #[inline(always)]
    pub const fn set_tdre(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Mode Fault Error Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn modf(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Mode Fault Error Interrupt Disable"]
    #[inline(always)]
    pub const fn set_modf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Overrun Error Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn ovres(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Overrun Error Interrupt Disable"]
    #[inline(always)]
    pub const fn set_ovres(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "NSS Rising Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn nssr(&self) -> bool {
        let val = (self.0 >> 8usize) & 0x01;
        val != 0
    }
    #[doc = "NSS Rising Interrupt Disable"]
    #[inline(always)]
    pub const fn set_nssr(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 8usize)) | (((val as u32) & 0x01) << 8usize);
    }
    #[doc = "Transmission Registers Empty Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn txempty(&self) -> bool {
        let val = (self.0 >> 9usize) & 0x01;
        val != 0
    }
    #[doc = "Transmission Registers Empty Disable"]
    #[inline(always)]
    pub const fn set_txempty(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 9usize)) | (((val as u32) & 0x01) << 9usize);
    }
    #[doc = "Underrun Error Interrupt Disable"]
    #[must_use]
    #[inline(always)]
    pub const fn undes(&self) -> bool {
        let val = (self.0 >> 10usize) & 0x01;
        val != 0
    }
    #[doc = "Underrun Error Interrupt Disable"]
    #[inline(always)]
    pub const fn set_undes(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 10usize)) | (((val as u32) & 0x01) << 10usize);
    }
}
impl Default for Idr {
    #[inline(always)]
    fn default() -> Idr {
        Idr(0)
    }
}
impl core::fmt::Debug for Idr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Idr")
            .field("rdrf", &self.rdrf())
            .field("tdre", &self.tdre())
            .field("modf", &self.modf())
            .field("ovres", &self.ovres())
            .field("nssr", &self.nssr())
            .field("txempty", &self.txempty())
            .field("undes", &self.undes())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Idr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Idr {{ rdrf: {=bool:?}, tdre: {=bool:?}, modf: {=bool:?}, ovres: {=bool:?}, nssr: {=bool:?}, txempty: {=bool:?}, undes: {=bool:?} }}",
            self.rdrf(),
            self.tdre(),
            self.modf(),
            self.ovres(),
            self.nssr(),
            self.txempty(),
            self.undes()
        )
    }
}
#[doc = "Interrupt Enable Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Ier(pub u32);
impl Ier {
    #[doc = "Receive Data Register Full Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn rdrf(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Receive Data Register Full Interrupt Enable"]
    #[inline(always)]
    pub const fn set_rdrf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn tdre(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Enable"]
    #[inline(always)]
    pub const fn set_tdre(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Mode Fault Error Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn modf(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Mode Fault Error Interrupt Enable"]
    #[inline(always)]
    pub const fn set_modf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Overrun Error Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn ovres(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Overrun Error Interrupt Enable"]
    #[inline(always)]
    pub const fn set_ovres(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "NSS Rising Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn nssr(&self) -> bool {
        let val = (self.0 >> 8usize) & 0x01;
        val != 0
    }
    #[doc = "NSS Rising Interrupt Enable"]
    #[inline(always)]
    pub const fn set_nssr(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 8usize)) | (((val as u32) & 0x01) << 8usize);
    }
    #[doc = "Transmission Registers Empty Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn txempty(&self) -> bool {
        let val = (self.0 >> 9usize) & 0x01;
        val != 0
    }
    #[doc = "Transmission Registers Empty Enable"]
    #[inline(always)]
    pub const fn set_txempty(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 9usize)) | (((val as u32) & 0x01) << 9usize);
    }
    #[doc = "Underrun Error Interrupt Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn undes(&self) -> bool {
        let val = (self.0 >> 10usize) & 0x01;
        val != 0
    }
    #[doc = "Underrun Error Interrupt Enable"]
    #[inline(always)]
    pub const fn set_undes(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 10usize)) | (((val as u32) & 0x01) << 10usize);
    }
}
impl Default for Ier {
    #[inline(always)]
    fn default() -> Ier {
        Ier(0)
    }
}
impl core::fmt::Debug for Ier {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Ier")
            .field("rdrf", &self.rdrf())
            .field("tdre", &self.tdre())
            .field("modf", &self.modf())
            .field("ovres", &self.ovres())
            .field("nssr", &self.nssr())
            .field("txempty", &self.txempty())
            .field("undes", &self.undes())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Ier {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Ier {{ rdrf: {=bool:?}, tdre: {=bool:?}, modf: {=bool:?}, ovres: {=bool:?}, nssr: {=bool:?}, txempty: {=bool:?}, undes: {=bool:?} }}",
            self.rdrf(),
            self.tdre(),
            self.modf(),
            self.ovres(),
            self.nssr(),
            self.txempty(),
            self.undes()
        )
    }
}
#[doc = "Interrupt Mask Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Imr(pub u32);
impl Imr {
    #[doc = "Receive Data Register Full Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn rdrf(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Receive Data Register Full Interrupt Mask"]
    #[inline(always)]
    pub const fn set_rdrf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn tdre(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Transmit Data Register Empty Interrupt Mask"]
    #[inline(always)]
    pub const fn set_tdre(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Mode Fault Error Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn modf(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Mode Fault Error Interrupt Mask"]
    #[inline(always)]
    pub const fn set_modf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Overrun Error Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn ovres(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Overrun Error Interrupt Mask"]
    #[inline(always)]
    pub const fn set_ovres(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "NSS Rising Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn nssr(&self) -> bool {
        let val = (self.0 >> 8usize) & 0x01;
        val != 0
    }
    #[doc = "NSS Rising Interrupt Mask"]
    #[inline(always)]
    pub const fn set_nssr(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 8usize)) | (((val as u32) & 0x01) << 8usize);
    }
    #[doc = "Transmission Registers Empty Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn txempty(&self) -> bool {
        let val = (self.0 >> 9usize) & 0x01;
        val != 0
    }
    #[doc = "Transmission Registers Empty Mask"]
    #[inline(always)]
    pub const fn set_txempty(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 9usize)) | (((val as u32) & 0x01) << 9usize);
    }
    #[doc = "Underrun Error Interrupt Mask"]
    #[must_use]
    #[inline(always)]
    pub const fn undes(&self) -> bool {
        let val = (self.0 >> 10usize) & 0x01;
        val != 0
    }
    #[doc = "Underrun Error Interrupt Mask"]
    #[inline(always)]
    pub const fn set_undes(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 10usize)) | (((val as u32) & 0x01) << 10usize);
    }
}
impl Default for Imr {
    #[inline(always)]
    fn default() -> Imr {
        Imr(0)
    }
}
impl core::fmt::Debug for Imr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Imr")
            .field("rdrf", &self.rdrf())
            .field("tdre", &self.tdre())
            .field("modf", &self.modf())
            .field("ovres", &self.ovres())
            .field("nssr", &self.nssr())
            .field("txempty", &self.txempty())
            .field("undes", &self.undes())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Imr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Imr {{ rdrf: {=bool:?}, tdre: {=bool:?}, modf: {=bool:?}, ovres: {=bool:?}, nssr: {=bool:?}, txempty: {=bool:?}, undes: {=bool:?} }}",
            self.rdrf(),
            self.tdre(),
            self.modf(),
            self.ovres(),
            self.nssr(),
            self.txempty(),
            self.undes()
        )
    }
}
#[doc = "Mode Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Mr(pub u32);
impl Mr {
    #[doc = "Master/Slave Mode"]
    #[must_use]
    #[inline(always)]
    pub const fn mstr(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Master/Slave Mode"]
    #[inline(always)]
    pub const fn set_mstr(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Peripheral Select"]
    #[must_use]
    #[inline(always)]
    pub const fn ps(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "Peripheral Select"]
    #[inline(always)]
    pub const fn set_ps(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Chip Select Decode"]
    #[must_use]
    #[inline(always)]
    pub const fn pcsdec(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Chip Select Decode"]
    #[inline(always)]
    pub const fn set_pcsdec(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Mode Fault Detection"]
    #[must_use]
    #[inline(always)]
    pub const fn modfdis(&self) -> bool {
        let val = (self.0 >> 4usize) & 0x01;
        val != 0
    }
    #[doc = "Mode Fault Detection"]
    #[inline(always)]
    pub const fn set_modfdis(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 4usize)) | (((val as u32) & 0x01) << 4usize);
    }
    #[doc = "Wait Data Read Before Transfer"]
    #[must_use]
    #[inline(always)]
    pub const fn wdrbt(&self) -> bool {
        let val = (self.0 >> 5usize) & 0x01;
        val != 0
    }
    #[doc = "Wait Data Read Before Transfer"]
    #[inline(always)]
    pub const fn set_wdrbt(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 5usize)) | (((val as u32) & 0x01) << 5usize);
    }
    #[doc = "Local Loopback Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn llb(&self) -> bool {
        let val = (self.0 >> 7usize) & 0x01;
        val != 0
    }
    #[doc = "Local Loopback Enable"]
    #[inline(always)]
    pub const fn set_llb(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 7usize)) | (((val as u32) & 0x01) << 7usize);
    }
    #[doc = "Peripheral Chip Select"]
    #[must_use]
    #[inline(always)]
    pub const fn pcs(&self) -> u8 {
        let val = (self.0 >> 16usize) & 0x0f;
        val as u8
    }
    #[doc = "Peripheral Chip Select"]
    #[inline(always)]
    pub const fn set_pcs(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 16usize)) | (((val as u32) & 0x0f) << 16usize);
    }
    #[doc = "Delay Between Chip Selects"]
    #[must_use]
    #[inline(always)]
    pub const fn dlybcs(&self) -> u8 {
        let val = (self.0 >> 24usize) & 0xff;
        val as u8
    }
    #[doc = "Delay Between Chip Selects"]
    #[inline(always)]
    pub const fn set_dlybcs(&mut self, val: u8) {
        self.0 = (self.0 & !(0xff << 24usize)) | (((val as u32) & 0xff) << 24usize);
    }
}
impl Default for Mr {
    #[inline(always)]
    fn default() -> Mr {
        Mr(0)
    }
}
impl core::fmt::Debug for Mr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Mr")
            .field("mstr", &self.mstr())
            .field("ps", &self.ps())
            .field("pcsdec", &self.pcsdec())
            .field("modfdis", &self.modfdis())
            .field("wdrbt", &self.wdrbt())
            .field("llb", &self.llb())
            .field("pcs", &self.pcs())
            .field("dlybcs", &self.dlybcs())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Mr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Mr {{ mstr: {=bool:?}, ps: {=bool:?}, pcsdec: {=bool:?}, modfdis: {=bool:?}, wdrbt: {=bool:?}, llb: {=bool:?}, pcs: {=u8:?}, dlybcs: {=u8:?} }}",
            self.mstr(),
            self.ps(),
            self.pcsdec(),
            self.modfdis(),
            self.wdrbt(),
            self.llb(),
            self.pcs(),
            self.dlybcs()
        )
    }
}
#[doc = "Receive Data Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Rdr(pub u32);
impl Rdr {
    #[doc = "Receive Data"]
    #[must_use]
    #[inline(always)]
    pub const fn rd(&self) -> u16 {
        let val = (self.0 >> 0usize) & 0xffff;
        val as u16
    }
    #[doc = "Receive Data"]
    #[inline(always)]
    pub const fn set_rd(&mut self, val: u16) {
        self.0 = (self.0 & !(0xffff << 0usize)) | (((val as u32) & 0xffff) << 0usize);
    }
    #[doc = "Peripheral Chip Select"]
    #[must_use]
    #[inline(always)]
    pub const fn pcs(&self) -> u8 {
        let val = (self.0 >> 16usize) & 0x0f;
        val as u8
    }
    #[doc = "Peripheral Chip Select"]
    #[inline(always)]
    pub const fn set_pcs(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 16usize)) | (((val as u32) & 0x0f) << 16usize);
    }
}
impl Default for Rdr {
    #[inline(always)]
    fn default() -> Rdr {
        Rdr(0)
    }
}
impl core::fmt::Debug for Rdr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Rdr")
            .field("rd", &self.rd())
            .field("pcs", &self.pcs())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Rdr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Rdr {{ rd: {=u16:?}, pcs: {=u8:?} }}",
            self.rd(),
            self.pcs()
        )
    }
}
#[doc = "Status Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Sr(pub u32);
impl Sr {
    #[doc = "Receive Data Register Full"]
    #[must_use]
    #[inline(always)]
    pub const fn rdrf(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Receive Data Register Full"]
    #[inline(always)]
    pub const fn set_rdrf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Transmit Data Register Empty"]
    #[must_use]
    #[inline(always)]
    pub const fn tdre(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "Transmit Data Register Empty"]
    #[inline(always)]
    pub const fn set_tdre(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Mode Fault Error"]
    #[must_use]
    #[inline(always)]
    pub const fn modf(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Mode Fault Error"]
    #[inline(always)]
    pub const fn set_modf(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Overrun Error Status"]
    #[must_use]
    #[inline(always)]
    pub const fn ovres(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Overrun Error Status"]
    #[inline(always)]
    pub const fn set_ovres(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "NSS Rising"]
    #[must_use]
    #[inline(always)]
    pub const fn nssr(&self) -> bool {
        let val = (self.0 >> 8usize) & 0x01;
        val != 0
    }
    #[doc = "NSS Rising"]
    #[inline(always)]
    pub const fn set_nssr(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 8usize)) | (((val as u32) & 0x01) << 8usize);
    }
    #[doc = "Transmission Registers Empty"]
    #[must_use]
    #[inline(always)]
    pub const fn txempty(&self) -> bool {
        let val = (self.0 >> 9usize) & 0x01;
        val != 0
    }
    #[doc = "Transmission Registers Empty"]
    #[inline(always)]
    pub const fn set_txempty(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 9usize)) | (((val as u32) & 0x01) << 9usize);
    }
    #[doc = "Underrun Error Status (Slave Mode Only)"]
    #[must_use]
    #[inline(always)]
    pub const fn undes(&self) -> bool {
        let val = (self.0 >> 10usize) & 0x01;
        val != 0
    }
    #[doc = "Underrun Error Status (Slave Mode Only)"]
    #[inline(always)]
    pub const fn set_undes(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 10usize)) | (((val as u32) & 0x01) << 10usize);
    }
    #[doc = "SPI Enable Status"]
    #[must_use]
    #[inline(always)]
    pub const fn spiens(&self) -> bool {
        let val = (self.0 >> 16usize) & 0x01;
        val != 0
    }
    #[doc = "SPI Enable Status"]
    #[inline(always)]
    pub const fn set_spiens(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 16usize)) | (((val as u32) & 0x01) << 16usize);
    }
}
impl Default for Sr {
    #[inline(always)]
    fn default() -> Sr {
        Sr(0)
    }
}
impl core::fmt::Debug for Sr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Sr")
            .field("rdrf", &self.rdrf())
            .field("tdre", &self.tdre())
            .field("modf", &self.modf())
            .field("ovres", &self.ovres())
            .field("nssr", &self.nssr())
            .field("txempty", &self.txempty())
            .field("undes", &self.undes())
            .field("spiens", &self.spiens())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Sr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Sr {{ rdrf: {=bool:?}, tdre: {=bool:?}, modf: {=bool:?}, ovres: {=bool:?}, nssr: {=bool:?}, txempty: {=bool:?}, undes: {=bool:?}, spiens: {=bool:?} }}",
            self.rdrf(),
            self.tdre(),
            self.modf(),
            self.ovres(),
            self.nssr(),
            self.txempty(),
            self.undes(),
            self.spiens()
        )
    }
}
#[doc = "Transmit Data Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Tdr(pub u32);
impl Tdr {
    #[doc = "Transmit Data"]
    #[must_use]
    #[inline(always)]
    pub const fn td(&self) -> u16 {
        let val = (self.0 >> 0usize) & 0xffff;
        val as u16
    }
    #[doc = "Transmit Data"]
    #[inline(always)]
    pub const fn set_td(&mut self, val: u16) {
        self.0 = (self.0 & !(0xffff << 0usize)) | (((val as u32) & 0xffff) << 0usize);
    }
    #[doc = "Peripheral Chip Select"]
    #[must_use]
    #[inline(always)]
    pub const fn pcs(&self) -> u8 {
        let val = (self.0 >> 16usize) & 0x0f;
        val as u8
    }
    #[doc = "Peripheral Chip Select"]
    #[inline(always)]
    pub const fn set_pcs(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 16usize)) | (((val as u32) & 0x0f) << 16usize);
    }
    #[doc = "Last Transfer"]
    #[must_use]
    #[inline(always)]
    pub const fn lastxfer(&self) -> bool {
        let val = (self.0 >> 24usize) & 0x01;
        val != 0
    }
    #[doc = "Last Transfer"]
    #[inline(always)]
    pub const fn set_lastxfer(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 24usize)) | (((val as u32) & 0x01) << 24usize);
    }
}
impl Default for Tdr {
    #[inline(always)]
    fn default() -> Tdr {
        Tdr(0)
    }
}
impl core::fmt::Debug for Tdr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Tdr")
            .field("td", &self.td())
            .field("pcs", &self.pcs())
            .field("lastxfer", &self.lastxfer())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Tdr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Tdr {{ td: {=u16:?}, pcs: {=u8:?}, lastxfer: {=bool:?} }}",
            self.td(),
            self.pcs(),
            self.lastxfer()
        )
    }
}
#[doc = "Write Protection Control Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Wpmr(pub u32);
impl Wpmr {
    #[doc = "Write Protect Enable"]
    #[must_use]
    #[inline(always)]
    pub const fn wpen(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Write Protect Enable"]
    #[inline(always)]
    pub const fn set_wpen(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Write Protect Key"]
    #[must_use]
    #[inline(always)]
    pub const fn wpkey(&self) -> super::vals::Wpkey {
        let val = (self.0 >> 8usize) & 0x00ff_ffff;
        super::vals::Wpkey::from_bits(val as u32)
    }
    #[doc = "Write Protect Key"]
    #[inline(always)]
    pub const fn set_wpkey(&mut self, val: super::vals::Wpkey) {
        self.0 = (self.0 & !(0x00ff_ffff << 8usize))
            | (((val.to_bits() as u32) & 0x00ff_ffff) << 8usize);
    }
}
impl Default for Wpmr {
    #[inline(always)]
    fn default() -> Wpmr {
        Wpmr(0)
    }
}
impl core::fmt::Debug for Wpmr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Wpmr")
            .field("wpen", &self.wpen())
            .field("wpkey", &self.wpkey())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Wpmr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Wpmr {{ wpen: {=bool:?}, wpkey: {:?} }}",
            self.wpen(),
            self.wpkey()
        )
    }
}
#[doc = "Write Protection Status Register"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Wpsr(pub u32);
impl Wpsr {
    #[doc = "Write Protection Violation Status"]
    #[must_use]
    #[inline(always)]
    pub const fn wpvs(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Write Protection Violation Status"]
    #[inline(always)]
    pub const fn set_wpvs(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Write Protection Violation Source"]
    #[must_use]
    #[inline(always)]
    pub const fn wpvsrc(&self) -> u8 {
        let val = (self.0 >> 8usize) & 0xff;
        val as u8
    }
    #[doc = "Write Protection Violation Source"]
    #[inline(always)]
    pub const fn set_wpvsrc(&mut self, val: u8) {
        self.0 = (self.0 & !(0xff << 8usize)) | (((val as u32) & 0xff) << 8usize);
    }
}
impl Default for Wpsr {
    #[inline(always)]
    fn default() -> Wpsr {
        Wpsr(0)
    }
}
impl core::fmt::Debug for Wpsr {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Wpsr")
            .field("wpvs", &self.wpvs())
            .field("wpvsrc", &self.wpvsrc())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Wpsr {
    fn format(&self, f: defmt::Formatter) {
        defmt::write!(
            f,
            "Wpsr {{ wpvs: {=bool:?}, wpvsrc: {=u8:?} }}",
            self.wpvs(),
            self.wpvsrc()
        )
    }
}