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
#[doc = "Register `PSR_ASCMode` reader"]
pub type R = crate::R<PSR_ASCMODE_SPEC>;
#[doc = "Register `PSR_ASCMode` writer"]
pub type W = crate::W<PSR_ASCMODE_SPEC>;
#[doc = "Transmission Idle\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TXIDLE_A {
    #[doc = "0: The transmitter line has not yet been idle."]
    VALUE1 = 0,
    #[doc = "1: The transmitter line has been idle and frame transmission is possible."]
    VALUE2 = 1,
}
impl From<TXIDLE_A> for bool {
    #[inline(always)]
    fn from(variant: TXIDLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `TXIDLE` reader - Transmission Idle"]
pub type TXIDLE_R = crate::BitReader<TXIDLE_A>;
impl TXIDLE_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> TXIDLE_A {
        match self.bits {
            false => TXIDLE_A::VALUE1,
            true => TXIDLE_A::VALUE2,
        }
    }
    #[doc = "The transmitter line has not yet been idle."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == TXIDLE_A::VALUE1
    }
    #[doc = "The transmitter line has been idle and frame transmission is possible."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == TXIDLE_A::VALUE2
    }
}
#[doc = "Field `TXIDLE` writer - Transmission Idle"]
pub type TXIDLE_W<'a, REG> = crate::BitWriter<'a, REG, TXIDLE_A>;
impl<'a, REG> TXIDLE_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "The transmitter line has not yet been idle."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(TXIDLE_A::VALUE1)
    }
    #[doc = "The transmitter line has been idle and frame transmission is possible."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(TXIDLE_A::VALUE2)
    }
}
#[doc = "Reception Idle\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RXIDLE_A {
    #[doc = "0: The receiver line has not yet been idle."]
    VALUE1 = 0,
    #[doc = "1: The receiver line has been idle and frame reception is possible."]
    VALUE2 = 1,
}
impl From<RXIDLE_A> for bool {
    #[inline(always)]
    fn from(variant: RXIDLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RXIDLE` reader - Reception Idle"]
pub type RXIDLE_R = crate::BitReader<RXIDLE_A>;
impl RXIDLE_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> RXIDLE_A {
        match self.bits {
            false => RXIDLE_A::VALUE1,
            true => RXIDLE_A::VALUE2,
        }
    }
    #[doc = "The receiver line has not yet been idle."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == RXIDLE_A::VALUE1
    }
    #[doc = "The receiver line has been idle and frame reception is possible."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == RXIDLE_A::VALUE2
    }
}
#[doc = "Field `RXIDLE` writer - Reception Idle"]
pub type RXIDLE_W<'a, REG> = crate::BitWriter<'a, REG, RXIDLE_A>;
impl<'a, REG> RXIDLE_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "The receiver line has not yet been idle."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(RXIDLE_A::VALUE1)
    }
    #[doc = "The receiver line has been idle and frame reception is possible."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(RXIDLE_A::VALUE2)
    }
}
#[doc = "Synchronization Break Detected\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SBD_A {
    #[doc = "0: A synchronization break has not yet been detected."]
    VALUE1 = 0,
    #[doc = "1: A synchronization break has been detected."]
    VALUE2 = 1,
}
impl From<SBD_A> for bool {
    #[inline(always)]
    fn from(variant: SBD_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `SBD` reader - Synchronization Break Detected"]
pub type SBD_R = crate::BitReader<SBD_A>;
impl SBD_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> SBD_A {
        match self.bits {
            false => SBD_A::VALUE1,
            true => SBD_A::VALUE2,
        }
    }
    #[doc = "A synchronization break has not yet been detected."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == SBD_A::VALUE1
    }
    #[doc = "A synchronization break has been detected."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == SBD_A::VALUE2
    }
}
#[doc = "Field `SBD` writer - Synchronization Break Detected"]
pub type SBD_W<'a, REG> = crate::BitWriter<'a, REG, SBD_A>;
impl<'a, REG> SBD_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A synchronization break has not yet been detected."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(SBD_A::VALUE1)
    }
    #[doc = "A synchronization break has been detected."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(SBD_A::VALUE2)
    }
}
#[doc = "Collision Detected\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum COL_A {
    #[doc = "0: A collision has not yet been detected and frame transmission is possible."]
    VALUE1 = 0,
    #[doc = "1: A collision has been detected and frame transmission is not possible."]
    VALUE2 = 1,
}
impl From<COL_A> for bool {
    #[inline(always)]
    fn from(variant: COL_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `COL` reader - Collision Detected"]
pub type COL_R = crate::BitReader<COL_A>;
impl COL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> COL_A {
        match self.bits {
            false => COL_A::VALUE1,
            true => COL_A::VALUE2,
        }
    }
    #[doc = "A collision has not yet been detected and frame transmission is possible."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == COL_A::VALUE1
    }
    #[doc = "A collision has been detected and frame transmission is not possible."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == COL_A::VALUE2
    }
}
#[doc = "Field `COL` writer - Collision Detected"]
pub type COL_W<'a, REG> = crate::BitWriter<'a, REG, COL_A>;
impl<'a, REG> COL_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A collision has not yet been detected and frame transmission is possible."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(COL_A::VALUE1)
    }
    #[doc = "A collision has been detected and frame transmission is not possible."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(COL_A::VALUE2)
    }
}
#[doc = "Receiver Noise Detected\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RNS_A {
    #[doc = "0: Receiver noise has not been detected."]
    VALUE1 = 0,
    #[doc = "1: Receiver noise has been detected."]
    VALUE2 = 1,
}
impl From<RNS_A> for bool {
    #[inline(always)]
    fn from(variant: RNS_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RNS` reader - Receiver Noise Detected"]
pub type RNS_R = crate::BitReader<RNS_A>;
impl RNS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> RNS_A {
        match self.bits {
            false => RNS_A::VALUE1,
            true => RNS_A::VALUE2,
        }
    }
    #[doc = "Receiver noise has not been detected."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == RNS_A::VALUE1
    }
    #[doc = "Receiver noise has been detected."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == RNS_A::VALUE2
    }
}
#[doc = "Field `RNS` writer - Receiver Noise Detected"]
pub type RNS_W<'a, REG> = crate::BitWriter<'a, REG, RNS_A>;
impl<'a, REG> RNS_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Receiver noise has not been detected."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(RNS_A::VALUE1)
    }
    #[doc = "Receiver noise has been detected."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(RNS_A::VALUE2)
    }
}
#[doc = "Format Error in Stop Bit 0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FER0_A {
    #[doc = "0: A format error 0 has not been detected."]
    VALUE1 = 0,
    #[doc = "1: A format error 0 has been detected."]
    VALUE2 = 1,
}
impl From<FER0_A> for bool {
    #[inline(always)]
    fn from(variant: FER0_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `FER0` reader - Format Error in Stop Bit 0"]
pub type FER0_R = crate::BitReader<FER0_A>;
impl FER0_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> FER0_A {
        match self.bits {
            false => FER0_A::VALUE1,
            true => FER0_A::VALUE2,
        }
    }
    #[doc = "A format error 0 has not been detected."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == FER0_A::VALUE1
    }
    #[doc = "A format error 0 has been detected."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == FER0_A::VALUE2
    }
}
#[doc = "Field `FER0` writer - Format Error in Stop Bit 0"]
pub type FER0_W<'a, REG> = crate::BitWriter<'a, REG, FER0_A>;
impl<'a, REG> FER0_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A format error 0 has not been detected."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(FER0_A::VALUE1)
    }
    #[doc = "A format error 0 has been detected."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(FER0_A::VALUE2)
    }
}
#[doc = "Format Error in Stop Bit 1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FER1_A {
    #[doc = "0: A format error 1 has not been detected."]
    VALUE1 = 0,
    #[doc = "1: A format error 1 has been detected."]
    VALUE2 = 1,
}
impl From<FER1_A> for bool {
    #[inline(always)]
    fn from(variant: FER1_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `FER1` reader - Format Error in Stop Bit 1"]
pub type FER1_R = crate::BitReader<FER1_A>;
impl FER1_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> FER1_A {
        match self.bits {
            false => FER1_A::VALUE1,
            true => FER1_A::VALUE2,
        }
    }
    #[doc = "A format error 1 has not been detected."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == FER1_A::VALUE1
    }
    #[doc = "A format error 1 has been detected."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == FER1_A::VALUE2
    }
}
#[doc = "Field `FER1` writer - Format Error in Stop Bit 1"]
pub type FER1_W<'a, REG> = crate::BitWriter<'a, REG, FER1_A>;
impl<'a, REG> FER1_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A format error 1 has not been detected."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(FER1_A::VALUE1)
    }
    #[doc = "A format error 1 has been detected."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(FER1_A::VALUE2)
    }
}
#[doc = "Receive Frame Finished\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RFF_A {
    #[doc = "0: The received frame is not yet finished."]
    VALUE1 = 0,
    #[doc = "1: The received frame is finished."]
    VALUE2 = 1,
}
impl From<RFF_A> for bool {
    #[inline(always)]
    fn from(variant: RFF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RFF` reader - Receive Frame Finished"]
pub type RFF_R = crate::BitReader<RFF_A>;
impl RFF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> RFF_A {
        match self.bits {
            false => RFF_A::VALUE1,
            true => RFF_A::VALUE2,
        }
    }
    #[doc = "The received frame is not yet finished."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == RFF_A::VALUE1
    }
    #[doc = "The received frame is finished."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == RFF_A::VALUE2
    }
}
#[doc = "Field `RFF` writer - Receive Frame Finished"]
pub type RFF_W<'a, REG> = crate::BitWriter<'a, REG, RFF_A>;
impl<'a, REG> RFF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "The received frame is not yet finished."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(RFF_A::VALUE1)
    }
    #[doc = "The received frame is finished."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(RFF_A::VALUE2)
    }
}
#[doc = "Transmitter Frame Finished\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TFF_A {
    #[doc = "0: The transmitter frame is not yet finished."]
    VALUE1 = 0,
    #[doc = "1: The transmitter frame is finished."]
    VALUE2 = 1,
}
impl From<TFF_A> for bool {
    #[inline(always)]
    fn from(variant: TFF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `TFF` reader - Transmitter Frame Finished"]
pub type TFF_R = crate::BitReader<TFF_A>;
impl TFF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> TFF_A {
        match self.bits {
            false => TFF_A::VALUE1,
            true => TFF_A::VALUE2,
        }
    }
    #[doc = "The transmitter frame is not yet finished."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == TFF_A::VALUE1
    }
    #[doc = "The transmitter frame is finished."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == TFF_A::VALUE2
    }
}
#[doc = "Field `TFF` writer - Transmitter Frame Finished"]
pub type TFF_W<'a, REG> = crate::BitWriter<'a, REG, TFF_A>;
impl<'a, REG> TFF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "The transmitter frame is not yet finished."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(TFF_A::VALUE1)
    }
    #[doc = "The transmitter frame is finished."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(TFF_A::VALUE2)
    }
}
#[doc = "Transfer Status BUSY\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum BUSY_A {
    #[doc = "0: A data transfer does not take place."]
    VALUE1 = 0,
    #[doc = "1: A data transfer currently takes place."]
    VALUE2 = 1,
}
impl From<BUSY_A> for bool {
    #[inline(always)]
    fn from(variant: BUSY_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `BUSY` reader - Transfer Status BUSY"]
pub type BUSY_R = crate::BitReader<BUSY_A>;
impl BUSY_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> BUSY_A {
        match self.bits {
            false => BUSY_A::VALUE1,
            true => BUSY_A::VALUE2,
        }
    }
    #[doc = "A data transfer does not take place."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == BUSY_A::VALUE1
    }
    #[doc = "A data transfer currently takes place."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == BUSY_A::VALUE2
    }
}
#[doc = "Receiver Start Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RSIF_A {
    #[doc = "0: A receiver start event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A receiver start event has occurred."]
    VALUE2 = 1,
}
impl From<RSIF_A> for bool {
    #[inline(always)]
    fn from(variant: RSIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RSIF` reader - Receiver Start Indication Flag"]
pub type RSIF_R = crate::BitReader<RSIF_A>;
impl RSIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> RSIF_A {
        match self.bits {
            false => RSIF_A::VALUE1,
            true => RSIF_A::VALUE2,
        }
    }
    #[doc = "A receiver start event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == RSIF_A::VALUE1
    }
    #[doc = "A receiver start event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == RSIF_A::VALUE2
    }
}
#[doc = "Field `RSIF` writer - Receiver Start Indication Flag"]
pub type RSIF_W<'a, REG> = crate::BitWriter<'a, REG, RSIF_A>;
impl<'a, REG> RSIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A receiver start event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(RSIF_A::VALUE1)
    }
    #[doc = "A receiver start event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(RSIF_A::VALUE2)
    }
}
#[doc = "Data Lost Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DLIF_A {
    #[doc = "0: A data lost event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A data lost event has occurred."]
    VALUE2 = 1,
}
impl From<DLIF_A> for bool {
    #[inline(always)]
    fn from(variant: DLIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `DLIF` reader - Data Lost Indication Flag"]
pub type DLIF_R = crate::BitReader<DLIF_A>;
impl DLIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> DLIF_A {
        match self.bits {
            false => DLIF_A::VALUE1,
            true => DLIF_A::VALUE2,
        }
    }
    #[doc = "A data lost event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == DLIF_A::VALUE1
    }
    #[doc = "A data lost event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == DLIF_A::VALUE2
    }
}
#[doc = "Field `DLIF` writer - Data Lost Indication Flag"]
pub type DLIF_W<'a, REG> = crate::BitWriter<'a, REG, DLIF_A>;
impl<'a, REG> DLIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A data lost event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(DLIF_A::VALUE1)
    }
    #[doc = "A data lost event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(DLIF_A::VALUE2)
    }
}
#[doc = "Transmit Shift Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TSIF_A {
    #[doc = "0: A transmit shift event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A transmit shift event has occurred."]
    VALUE2 = 1,
}
impl From<TSIF_A> for bool {
    #[inline(always)]
    fn from(variant: TSIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `TSIF` reader - Transmit Shift Indication Flag"]
pub type TSIF_R = crate::BitReader<TSIF_A>;
impl TSIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> TSIF_A {
        match self.bits {
            false => TSIF_A::VALUE1,
            true => TSIF_A::VALUE2,
        }
    }
    #[doc = "A transmit shift event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == TSIF_A::VALUE1
    }
    #[doc = "A transmit shift event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == TSIF_A::VALUE2
    }
}
#[doc = "Field `TSIF` writer - Transmit Shift Indication Flag"]
pub type TSIF_W<'a, REG> = crate::BitWriter<'a, REG, TSIF_A>;
impl<'a, REG> TSIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A transmit shift event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(TSIF_A::VALUE1)
    }
    #[doc = "A transmit shift event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(TSIF_A::VALUE2)
    }
}
#[doc = "Transmit Buffer Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TBIF_A {
    #[doc = "0: A transmit buffer event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A transmit buffer event has occurred."]
    VALUE2 = 1,
}
impl From<TBIF_A> for bool {
    #[inline(always)]
    fn from(variant: TBIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `TBIF` reader - Transmit Buffer Indication Flag"]
pub type TBIF_R = crate::BitReader<TBIF_A>;
impl TBIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> TBIF_A {
        match self.bits {
            false => TBIF_A::VALUE1,
            true => TBIF_A::VALUE2,
        }
    }
    #[doc = "A transmit buffer event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == TBIF_A::VALUE1
    }
    #[doc = "A transmit buffer event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == TBIF_A::VALUE2
    }
}
#[doc = "Field `TBIF` writer - Transmit Buffer Indication Flag"]
pub type TBIF_W<'a, REG> = crate::BitWriter<'a, REG, TBIF_A>;
impl<'a, REG> TBIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A transmit buffer event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(TBIF_A::VALUE1)
    }
    #[doc = "A transmit buffer event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(TBIF_A::VALUE2)
    }
}
#[doc = "Receive Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum RIF_A {
    #[doc = "0: A receive event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A receive event has occurred."]
    VALUE2 = 1,
}
impl From<RIF_A> for bool {
    #[inline(always)]
    fn from(variant: RIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `RIF` reader - Receive Indication Flag"]
pub type RIF_R = crate::BitReader<RIF_A>;
impl RIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> RIF_A {
        match self.bits {
            false => RIF_A::VALUE1,
            true => RIF_A::VALUE2,
        }
    }
    #[doc = "A receive event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == RIF_A::VALUE1
    }
    #[doc = "A receive event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == RIF_A::VALUE2
    }
}
#[doc = "Field `RIF` writer - Receive Indication Flag"]
pub type RIF_W<'a, REG> = crate::BitWriter<'a, REG, RIF_A>;
impl<'a, REG> RIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A receive event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(RIF_A::VALUE1)
    }
    #[doc = "A receive event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(RIF_A::VALUE2)
    }
}
#[doc = "Alternative Receive Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum AIF_A {
    #[doc = "0: An alternative receive event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: An alternative receive event has occurred."]
    VALUE2 = 1,
}
impl From<AIF_A> for bool {
    #[inline(always)]
    fn from(variant: AIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `AIF` reader - Alternative Receive Indication Flag"]
pub type AIF_R = crate::BitReader<AIF_A>;
impl AIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> AIF_A {
        match self.bits {
            false => AIF_A::VALUE1,
            true => AIF_A::VALUE2,
        }
    }
    #[doc = "An alternative receive event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == AIF_A::VALUE1
    }
    #[doc = "An alternative receive event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == AIF_A::VALUE2
    }
}
#[doc = "Field `AIF` writer - Alternative Receive Indication Flag"]
pub type AIF_W<'a, REG> = crate::BitWriter<'a, REG, AIF_A>;
impl<'a, REG> AIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "An alternative receive event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(AIF_A::VALUE1)
    }
    #[doc = "An alternative receive event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(AIF_A::VALUE2)
    }
}
#[doc = "Baud Rate Generator Indication Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum BRGIF_A {
    #[doc = "0: A baud rate generator event has not occurred."]
    VALUE1 = 0,
    #[doc = "1: A baud rate generator event has occurred."]
    VALUE2 = 1,
}
impl From<BRGIF_A> for bool {
    #[inline(always)]
    fn from(variant: BRGIF_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `BRGIF` reader - Baud Rate Generator Indication Flag"]
pub type BRGIF_R = crate::BitReader<BRGIF_A>;
impl BRGIF_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> BRGIF_A {
        match self.bits {
            false => BRGIF_A::VALUE1,
            true => BRGIF_A::VALUE2,
        }
    }
    #[doc = "A baud rate generator event has not occurred."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == BRGIF_A::VALUE1
    }
    #[doc = "A baud rate generator event has occurred."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == BRGIF_A::VALUE2
    }
}
#[doc = "Field `BRGIF` writer - Baud Rate Generator Indication Flag"]
pub type BRGIF_W<'a, REG> = crate::BitWriter<'a, REG, BRGIF_A>;
impl<'a, REG> BRGIF_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "A baud rate generator event has not occurred."]
    #[inline(always)]
    pub fn value1(self) -> &'a mut crate::W<REG> {
        self.variant(BRGIF_A::VALUE1)
    }
    #[doc = "A baud rate generator event has occurred."]
    #[inline(always)]
    pub fn value2(self) -> &'a mut crate::W<REG> {
        self.variant(BRGIF_A::VALUE2)
    }
}
impl R {
    #[doc = "Bit 0 - Transmission Idle"]
    #[inline(always)]
    pub fn txidle(&self) -> TXIDLE_R {
        TXIDLE_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Reception Idle"]
    #[inline(always)]
    pub fn rxidle(&self) -> RXIDLE_R {
        RXIDLE_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Synchronization Break Detected"]
    #[inline(always)]
    pub fn sbd(&self) -> SBD_R {
        SBD_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Collision Detected"]
    #[inline(always)]
    pub fn col(&self) -> COL_R {
        COL_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Receiver Noise Detected"]
    #[inline(always)]
    pub fn rns(&self) -> RNS_R {
        RNS_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Format Error in Stop Bit 0"]
    #[inline(always)]
    pub fn fer0(&self) -> FER0_R {
        FER0_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Format Error in Stop Bit 1"]
    #[inline(always)]
    pub fn fer1(&self) -> FER1_R {
        FER1_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Receive Frame Finished"]
    #[inline(always)]
    pub fn rff(&self) -> RFF_R {
        RFF_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Transmitter Frame Finished"]
    #[inline(always)]
    pub fn tff(&self) -> TFF_R {
        TFF_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Transfer Status BUSY"]
    #[inline(always)]
    pub fn busy(&self) -> BUSY_R {
        BUSY_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Receiver Start Indication Flag"]
    #[inline(always)]
    pub fn rsif(&self) -> RSIF_R {
        RSIF_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Data Lost Indication Flag"]
    #[inline(always)]
    pub fn dlif(&self) -> DLIF_R {
        DLIF_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 12 - Transmit Shift Indication Flag"]
    #[inline(always)]
    pub fn tsif(&self) -> TSIF_R {
        TSIF_R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Transmit Buffer Indication Flag"]
    #[inline(always)]
    pub fn tbif(&self) -> TBIF_R {
        TBIF_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Receive Indication Flag"]
    #[inline(always)]
    pub fn rif(&self) -> RIF_R {
        RIF_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Alternative Receive Indication Flag"]
    #[inline(always)]
    pub fn aif(&self) -> AIF_R {
        AIF_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bit 16 - Baud Rate Generator Indication Flag"]
    #[inline(always)]
    pub fn brgif(&self) -> BRGIF_R {
        BRGIF_R::new(((self.bits >> 16) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Transmission Idle"]
    #[inline(always)]
    #[must_use]
    pub fn txidle(&mut self) -> TXIDLE_W<PSR_ASCMODE_SPEC> {
        TXIDLE_W::new(self, 0)
    }
    #[doc = "Bit 1 - Reception Idle"]
    #[inline(always)]
    #[must_use]
    pub fn rxidle(&mut self) -> RXIDLE_W<PSR_ASCMODE_SPEC> {
        RXIDLE_W::new(self, 1)
    }
    #[doc = "Bit 2 - Synchronization Break Detected"]
    #[inline(always)]
    #[must_use]
    pub fn sbd(&mut self) -> SBD_W<PSR_ASCMODE_SPEC> {
        SBD_W::new(self, 2)
    }
    #[doc = "Bit 3 - Collision Detected"]
    #[inline(always)]
    #[must_use]
    pub fn col(&mut self) -> COL_W<PSR_ASCMODE_SPEC> {
        COL_W::new(self, 3)
    }
    #[doc = "Bit 4 - Receiver Noise Detected"]
    #[inline(always)]
    #[must_use]
    pub fn rns(&mut self) -> RNS_W<PSR_ASCMODE_SPEC> {
        RNS_W::new(self, 4)
    }
    #[doc = "Bit 5 - Format Error in Stop Bit 0"]
    #[inline(always)]
    #[must_use]
    pub fn fer0(&mut self) -> FER0_W<PSR_ASCMODE_SPEC> {
        FER0_W::new(self, 5)
    }
    #[doc = "Bit 6 - Format Error in Stop Bit 1"]
    #[inline(always)]
    #[must_use]
    pub fn fer1(&mut self) -> FER1_W<PSR_ASCMODE_SPEC> {
        FER1_W::new(self, 6)
    }
    #[doc = "Bit 7 - Receive Frame Finished"]
    #[inline(always)]
    #[must_use]
    pub fn rff(&mut self) -> RFF_W<PSR_ASCMODE_SPEC> {
        RFF_W::new(self, 7)
    }
    #[doc = "Bit 8 - Transmitter Frame Finished"]
    #[inline(always)]
    #[must_use]
    pub fn tff(&mut self) -> TFF_W<PSR_ASCMODE_SPEC> {
        TFF_W::new(self, 8)
    }
    #[doc = "Bit 10 - Receiver Start Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn rsif(&mut self) -> RSIF_W<PSR_ASCMODE_SPEC> {
        RSIF_W::new(self, 10)
    }
    #[doc = "Bit 11 - Data Lost Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn dlif(&mut self) -> DLIF_W<PSR_ASCMODE_SPEC> {
        DLIF_W::new(self, 11)
    }
    #[doc = "Bit 12 - Transmit Shift Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn tsif(&mut self) -> TSIF_W<PSR_ASCMODE_SPEC> {
        TSIF_W::new(self, 12)
    }
    #[doc = "Bit 13 - Transmit Buffer Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn tbif(&mut self) -> TBIF_W<PSR_ASCMODE_SPEC> {
        TBIF_W::new(self, 13)
    }
    #[doc = "Bit 14 - Receive Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn rif(&mut self) -> RIF_W<PSR_ASCMODE_SPEC> {
        RIF_W::new(self, 14)
    }
    #[doc = "Bit 15 - Alternative Receive Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn aif(&mut self) -> AIF_W<PSR_ASCMODE_SPEC> {
        AIF_W::new(self, 15)
    }
    #[doc = "Bit 16 - Baud Rate Generator Indication Flag"]
    #[inline(always)]
    #[must_use]
    pub fn brgif(&mut self) -> BRGIF_W<PSR_ASCMODE_SPEC> {
        BRGIF_W::new(self, 16)
    }
}
#[doc = "Protocol Status Register \\[ASC Mode\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`psr_ascmode::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 [`psr_ascmode::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PSR_ASCMODE_SPEC;
impl crate::RegisterSpec for PSR_ASCMODE_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`psr_ascmode::R`](R) reader structure"]
impl crate::Readable for PSR_ASCMODE_SPEC {}
#[doc = "`write(|w| ..)` method takes [`psr_ascmode::W`](W) writer structure"]
impl crate::Writable for PSR_ASCMODE_SPEC {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets PSR_ASCMode to value 0"]
impl crate::Resettable for PSR_ASCMODE_SPEC {
    const RESET_VALUE: u32 = 0;
}