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
#[doc = "Register `pb_cfg1` reader"]
pub struct R(crate::R<PB_CFG1_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<PB_CFG1_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<PB_CFG1_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<PB_CFG1_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `pb_cfg1` writer"]
pub struct W(crate::W<PB_CFG1_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<PB_CFG1_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::ops::DerefMut for W {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl From<crate::W<PB_CFG1_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<PB_CFG1_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Field `pb8_select` reader - "]
pub type PB8_SELECT_R = crate::FieldReader<u8, PB8_SELECT_A>;
#[doc = "\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PB8_SELECT_A {
    #[doc = "0: `0`"]
    INPUT = 0,
    #[doc = "1: `1`"]
    OUTPUT = 1,
    #[doc = "2: `10`"]
    DMIC_DATA3 = 2,
    #[doc = "3: `11`"]
    PWM5 = 3,
    #[doc = "4: `100`"]
    TWI2_SCK = 4,
    #[doc = "5: `101`"]
    SPI1_HOLD_DBI_DCX_DBI_WRX = 5,
    #[doc = "6: `110`"]
    UART0_TX = 6,
    #[doc = "7: `111`"]
    UART1_TX = 7,
    #[doc = "14: `1110`"]
    PB_EINT8 = 14,
    #[doc = "15: `1111`"]
    IO_DISABLE = 15,
}
impl From<PB8_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: PB8_SELECT_A) -> Self {
        variant as _
    }
}
impl PB8_SELECT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PB8_SELECT_A> {
        match self.bits {
            0 => Some(PB8_SELECT_A::INPUT),
            1 => Some(PB8_SELECT_A::OUTPUT),
            2 => Some(PB8_SELECT_A::DMIC_DATA3),
            3 => Some(PB8_SELECT_A::PWM5),
            4 => Some(PB8_SELECT_A::TWI2_SCK),
            5 => Some(PB8_SELECT_A::SPI1_HOLD_DBI_DCX_DBI_WRX),
            6 => Some(PB8_SELECT_A::UART0_TX),
            7 => Some(PB8_SELECT_A::UART1_TX),
            14 => Some(PB8_SELECT_A::PB_EINT8),
            15 => Some(PB8_SELECT_A::IO_DISABLE),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `INPUT`"]
    #[inline(always)]
    pub fn is_input(&self) -> bool {
        *self == PB8_SELECT_A::INPUT
    }
    #[doc = "Checks if the value of the field is `OUTPUT`"]
    #[inline(always)]
    pub fn is_output(&self) -> bool {
        *self == PB8_SELECT_A::OUTPUT
    }
    #[doc = "Checks if the value of the field is `DMIC_DATA3`"]
    #[inline(always)]
    pub fn is_dmic_data3(&self) -> bool {
        *self == PB8_SELECT_A::DMIC_DATA3
    }
    #[doc = "Checks if the value of the field is `PWM5`"]
    #[inline(always)]
    pub fn is_pwm5(&self) -> bool {
        *self == PB8_SELECT_A::PWM5
    }
    #[doc = "Checks if the value of the field is `TWI2_SCK`"]
    #[inline(always)]
    pub fn is_twi2_sck(&self) -> bool {
        *self == PB8_SELECT_A::TWI2_SCK
    }
    #[doc = "Checks if the value of the field is `SPI1_HOLD_DBI_DCX_DBI_WRX`"]
    #[inline(always)]
    pub fn is_spi1_hold_dbi_dcx_dbi_wrx(&self) -> bool {
        *self == PB8_SELECT_A::SPI1_HOLD_DBI_DCX_DBI_WRX
    }
    #[doc = "Checks if the value of the field is `UART0_TX`"]
    #[inline(always)]
    pub fn is_uart0_tx(&self) -> bool {
        *self == PB8_SELECT_A::UART0_TX
    }
    #[doc = "Checks if the value of the field is `UART1_TX`"]
    #[inline(always)]
    pub fn is_uart1_tx(&self) -> bool {
        *self == PB8_SELECT_A::UART1_TX
    }
    #[doc = "Checks if the value of the field is `PB_EINT8`"]
    #[inline(always)]
    pub fn is_pb_eint8(&self) -> bool {
        *self == PB8_SELECT_A::PB_EINT8
    }
    #[doc = "Checks if the value of the field is `IO_DISABLE`"]
    #[inline(always)]
    pub fn is_io_disable(&self) -> bool {
        *self == PB8_SELECT_A::IO_DISABLE
    }
}
#[doc = "Field `pb8_select` writer - "]
pub type PB8_SELECT_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, PB_CFG1_SPEC, u8, PB8_SELECT_A, 4, O>;
impl<'a, const O: u8> PB8_SELECT_W<'a, O> {
    #[doc = "`0`"]
    #[inline(always)]
    pub fn input(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::INPUT)
    }
    #[doc = "`1`"]
    #[inline(always)]
    pub fn output(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::OUTPUT)
    }
    #[doc = "`10`"]
    #[inline(always)]
    pub fn dmic_data3(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::DMIC_DATA3)
    }
    #[doc = "`11`"]
    #[inline(always)]
    pub fn pwm5(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::PWM5)
    }
    #[doc = "`100`"]
    #[inline(always)]
    pub fn twi2_sck(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::TWI2_SCK)
    }
    #[doc = "`101`"]
    #[inline(always)]
    pub fn spi1_hold_dbi_dcx_dbi_wrx(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::SPI1_HOLD_DBI_DCX_DBI_WRX)
    }
    #[doc = "`110`"]
    #[inline(always)]
    pub fn uart0_tx(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::UART0_TX)
    }
    #[doc = "`111`"]
    #[inline(always)]
    pub fn uart1_tx(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::UART1_TX)
    }
    #[doc = "`1110`"]
    #[inline(always)]
    pub fn pb_eint8(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::PB_EINT8)
    }
    #[doc = "`1111`"]
    #[inline(always)]
    pub fn io_disable(self) -> &'a mut W {
        self.variant(PB8_SELECT_A::IO_DISABLE)
    }
}
#[doc = "Field `pb9_select` reader - "]
pub type PB9_SELECT_R = crate::FieldReader<u8, PB9_SELECT_A>;
#[doc = "\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PB9_SELECT_A {
    #[doc = "0: `0`"]
    INPUT = 0,
    #[doc = "1: `1`"]
    OUTPUT = 1,
    #[doc = "2: `10`"]
    DMIC_DATA2 = 2,
    #[doc = "3: `11`"]
    PWM6 = 3,
    #[doc = "4: `100`"]
    TWI2_SDA = 4,
    #[doc = "5: `101`"]
    SPI1_MISO_DBI_SDI_DBI_TE_DBI_DCX = 5,
    #[doc = "6: `110`"]
    UART0_RX = 6,
    #[doc = "7: `111`"]
    UART1_RX = 7,
    #[doc = "14: `1110`"]
    PB_EINT9 = 14,
    #[doc = "15: `1111`"]
    IO_DISABLE = 15,
}
impl From<PB9_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: PB9_SELECT_A) -> Self {
        variant as _
    }
}
impl PB9_SELECT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PB9_SELECT_A> {
        match self.bits {
            0 => Some(PB9_SELECT_A::INPUT),
            1 => Some(PB9_SELECT_A::OUTPUT),
            2 => Some(PB9_SELECT_A::DMIC_DATA2),
            3 => Some(PB9_SELECT_A::PWM6),
            4 => Some(PB9_SELECT_A::TWI2_SDA),
            5 => Some(PB9_SELECT_A::SPI1_MISO_DBI_SDI_DBI_TE_DBI_DCX),
            6 => Some(PB9_SELECT_A::UART0_RX),
            7 => Some(PB9_SELECT_A::UART1_RX),
            14 => Some(PB9_SELECT_A::PB_EINT9),
            15 => Some(PB9_SELECT_A::IO_DISABLE),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `INPUT`"]
    #[inline(always)]
    pub fn is_input(&self) -> bool {
        *self == PB9_SELECT_A::INPUT
    }
    #[doc = "Checks if the value of the field is `OUTPUT`"]
    #[inline(always)]
    pub fn is_output(&self) -> bool {
        *self == PB9_SELECT_A::OUTPUT
    }
    #[doc = "Checks if the value of the field is `DMIC_DATA2`"]
    #[inline(always)]
    pub fn is_dmic_data2(&self) -> bool {
        *self == PB9_SELECT_A::DMIC_DATA2
    }
    #[doc = "Checks if the value of the field is `PWM6`"]
    #[inline(always)]
    pub fn is_pwm6(&self) -> bool {
        *self == PB9_SELECT_A::PWM6
    }
    #[doc = "Checks if the value of the field is `TWI2_SDA`"]
    #[inline(always)]
    pub fn is_twi2_sda(&self) -> bool {
        *self == PB9_SELECT_A::TWI2_SDA
    }
    #[doc = "Checks if the value of the field is `SPI1_MISO_DBI_SDI_DBI_TE_DBI_DCX`"]
    #[inline(always)]
    pub fn is_spi1_miso_dbi_sdi_dbi_te_dbi_dcx(&self) -> bool {
        *self == PB9_SELECT_A::SPI1_MISO_DBI_SDI_DBI_TE_DBI_DCX
    }
    #[doc = "Checks if the value of the field is `UART0_RX`"]
    #[inline(always)]
    pub fn is_uart0_rx(&self) -> bool {
        *self == PB9_SELECT_A::UART0_RX
    }
    #[doc = "Checks if the value of the field is `UART1_RX`"]
    #[inline(always)]
    pub fn is_uart1_rx(&self) -> bool {
        *self == PB9_SELECT_A::UART1_RX
    }
    #[doc = "Checks if the value of the field is `PB_EINT9`"]
    #[inline(always)]
    pub fn is_pb_eint9(&self) -> bool {
        *self == PB9_SELECT_A::PB_EINT9
    }
    #[doc = "Checks if the value of the field is `IO_DISABLE`"]
    #[inline(always)]
    pub fn is_io_disable(&self) -> bool {
        *self == PB9_SELECT_A::IO_DISABLE
    }
}
#[doc = "Field `pb9_select` writer - "]
pub type PB9_SELECT_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, PB_CFG1_SPEC, u8, PB9_SELECT_A, 4, O>;
impl<'a, const O: u8> PB9_SELECT_W<'a, O> {
    #[doc = "`0`"]
    #[inline(always)]
    pub fn input(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::INPUT)
    }
    #[doc = "`1`"]
    #[inline(always)]
    pub fn output(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::OUTPUT)
    }
    #[doc = "`10`"]
    #[inline(always)]
    pub fn dmic_data2(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::DMIC_DATA2)
    }
    #[doc = "`11`"]
    #[inline(always)]
    pub fn pwm6(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::PWM6)
    }
    #[doc = "`100`"]
    #[inline(always)]
    pub fn twi2_sda(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::TWI2_SDA)
    }
    #[doc = "`101`"]
    #[inline(always)]
    pub fn spi1_miso_dbi_sdi_dbi_te_dbi_dcx(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::SPI1_MISO_DBI_SDI_DBI_TE_DBI_DCX)
    }
    #[doc = "`110`"]
    #[inline(always)]
    pub fn uart0_rx(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::UART0_RX)
    }
    #[doc = "`111`"]
    #[inline(always)]
    pub fn uart1_rx(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::UART1_RX)
    }
    #[doc = "`1110`"]
    #[inline(always)]
    pub fn pb_eint9(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::PB_EINT9)
    }
    #[doc = "`1111`"]
    #[inline(always)]
    pub fn io_disable(self) -> &'a mut W {
        self.variant(PB9_SELECT_A::IO_DISABLE)
    }
}
#[doc = "Field `pb10_select` reader - "]
pub type PB10_SELECT_R = crate::FieldReader<u8, PB10_SELECT_A>;
#[doc = "\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PB10_SELECT_A {
    #[doc = "0: `0`"]
    INPUT = 0,
    #[doc = "1: `1`"]
    OUTPUT = 1,
    #[doc = "2: `10`"]
    DMIC_DATA1 = 2,
    #[doc = "3: `11`"]
    PWM7 = 3,
    #[doc = "4: `100`"]
    TWI0_SCK = 4,
    #[doc = "5: `101`"]
    SPI1_MOSI_DBI_SDO = 5,
    #[doc = "6: `110`"]
    CLK_FANOUT0 = 6,
    #[doc = "7: `111`"]
    UART1_RTS = 7,
    #[doc = "14: `1110`"]
    PB_EINT10 = 14,
    #[doc = "15: `1111`"]
    IO_DISABLE = 15,
}
impl From<PB10_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: PB10_SELECT_A) -> Self {
        variant as _
    }
}
impl PB10_SELECT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PB10_SELECT_A> {
        match self.bits {
            0 => Some(PB10_SELECT_A::INPUT),
            1 => Some(PB10_SELECT_A::OUTPUT),
            2 => Some(PB10_SELECT_A::DMIC_DATA1),
            3 => Some(PB10_SELECT_A::PWM7),
            4 => Some(PB10_SELECT_A::TWI0_SCK),
            5 => Some(PB10_SELECT_A::SPI1_MOSI_DBI_SDO),
            6 => Some(PB10_SELECT_A::CLK_FANOUT0),
            7 => Some(PB10_SELECT_A::UART1_RTS),
            14 => Some(PB10_SELECT_A::PB_EINT10),
            15 => Some(PB10_SELECT_A::IO_DISABLE),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `INPUT`"]
    #[inline(always)]
    pub fn is_input(&self) -> bool {
        *self == PB10_SELECT_A::INPUT
    }
    #[doc = "Checks if the value of the field is `OUTPUT`"]
    #[inline(always)]
    pub fn is_output(&self) -> bool {
        *self == PB10_SELECT_A::OUTPUT
    }
    #[doc = "Checks if the value of the field is `DMIC_DATA1`"]
    #[inline(always)]
    pub fn is_dmic_data1(&self) -> bool {
        *self == PB10_SELECT_A::DMIC_DATA1
    }
    #[doc = "Checks if the value of the field is `PWM7`"]
    #[inline(always)]
    pub fn is_pwm7(&self) -> bool {
        *self == PB10_SELECT_A::PWM7
    }
    #[doc = "Checks if the value of the field is `TWI0_SCK`"]
    #[inline(always)]
    pub fn is_twi0_sck(&self) -> bool {
        *self == PB10_SELECT_A::TWI0_SCK
    }
    #[doc = "Checks if the value of the field is `SPI1_MOSI_DBI_SDO`"]
    #[inline(always)]
    pub fn is_spi1_mosi_dbi_sdo(&self) -> bool {
        *self == PB10_SELECT_A::SPI1_MOSI_DBI_SDO
    }
    #[doc = "Checks if the value of the field is `CLK_FANOUT0`"]
    #[inline(always)]
    pub fn is_clk_fanout0(&self) -> bool {
        *self == PB10_SELECT_A::CLK_FANOUT0
    }
    #[doc = "Checks if the value of the field is `UART1_RTS`"]
    #[inline(always)]
    pub fn is_uart1_rts(&self) -> bool {
        *self == PB10_SELECT_A::UART1_RTS
    }
    #[doc = "Checks if the value of the field is `PB_EINT10`"]
    #[inline(always)]
    pub fn is_pb_eint10(&self) -> bool {
        *self == PB10_SELECT_A::PB_EINT10
    }
    #[doc = "Checks if the value of the field is `IO_DISABLE`"]
    #[inline(always)]
    pub fn is_io_disable(&self) -> bool {
        *self == PB10_SELECT_A::IO_DISABLE
    }
}
#[doc = "Field `pb10_select` writer - "]
pub type PB10_SELECT_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, PB_CFG1_SPEC, u8, PB10_SELECT_A, 4, O>;
impl<'a, const O: u8> PB10_SELECT_W<'a, O> {
    #[doc = "`0`"]
    #[inline(always)]
    pub fn input(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::INPUT)
    }
    #[doc = "`1`"]
    #[inline(always)]
    pub fn output(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::OUTPUT)
    }
    #[doc = "`10`"]
    #[inline(always)]
    pub fn dmic_data1(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::DMIC_DATA1)
    }
    #[doc = "`11`"]
    #[inline(always)]
    pub fn pwm7(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::PWM7)
    }
    #[doc = "`100`"]
    #[inline(always)]
    pub fn twi0_sck(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::TWI0_SCK)
    }
    #[doc = "`101`"]
    #[inline(always)]
    pub fn spi1_mosi_dbi_sdo(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::SPI1_MOSI_DBI_SDO)
    }
    #[doc = "`110`"]
    #[inline(always)]
    pub fn clk_fanout0(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::CLK_FANOUT0)
    }
    #[doc = "`111`"]
    #[inline(always)]
    pub fn uart1_rts(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::UART1_RTS)
    }
    #[doc = "`1110`"]
    #[inline(always)]
    pub fn pb_eint10(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::PB_EINT10)
    }
    #[doc = "`1111`"]
    #[inline(always)]
    pub fn io_disable(self) -> &'a mut W {
        self.variant(PB10_SELECT_A::IO_DISABLE)
    }
}
#[doc = "Field `pb11_select` reader - "]
pub type PB11_SELECT_R = crate::FieldReader<u8, PB11_SELECT_A>;
#[doc = "\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PB11_SELECT_A {
    #[doc = "0: `0`"]
    INPUT = 0,
    #[doc = "1: `1`"]
    OUTPUT = 1,
    #[doc = "2: `10`"]
    DMIC_DATA0 = 2,
    #[doc = "3: `11`"]
    PWM2 = 3,
    #[doc = "4: `100`"]
    TWI0_SDA = 4,
    #[doc = "5: `101`"]
    SPI1_CLK_DBI_SCLK = 5,
    #[doc = "6: `110`"]
    CLK_FANOUT1 = 6,
    #[doc = "7: `111`"]
    UART1_CTS = 7,
    #[doc = "14: `1110`"]
    PB_EINT11 = 14,
    #[doc = "15: `1111`"]
    IO_DISABLE = 15,
}
impl From<PB11_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: PB11_SELECT_A) -> Self {
        variant as _
    }
}
impl PB11_SELECT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PB11_SELECT_A> {
        match self.bits {
            0 => Some(PB11_SELECT_A::INPUT),
            1 => Some(PB11_SELECT_A::OUTPUT),
            2 => Some(PB11_SELECT_A::DMIC_DATA0),
            3 => Some(PB11_SELECT_A::PWM2),
            4 => Some(PB11_SELECT_A::TWI0_SDA),
            5 => Some(PB11_SELECT_A::SPI1_CLK_DBI_SCLK),
            6 => Some(PB11_SELECT_A::CLK_FANOUT1),
            7 => Some(PB11_SELECT_A::UART1_CTS),
            14 => Some(PB11_SELECT_A::PB_EINT11),
            15 => Some(PB11_SELECT_A::IO_DISABLE),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `INPUT`"]
    #[inline(always)]
    pub fn is_input(&self) -> bool {
        *self == PB11_SELECT_A::INPUT
    }
    #[doc = "Checks if the value of the field is `OUTPUT`"]
    #[inline(always)]
    pub fn is_output(&self) -> bool {
        *self == PB11_SELECT_A::OUTPUT
    }
    #[doc = "Checks if the value of the field is `DMIC_DATA0`"]
    #[inline(always)]
    pub fn is_dmic_data0(&self) -> bool {
        *self == PB11_SELECT_A::DMIC_DATA0
    }
    #[doc = "Checks if the value of the field is `PWM2`"]
    #[inline(always)]
    pub fn is_pwm2(&self) -> bool {
        *self == PB11_SELECT_A::PWM2
    }
    #[doc = "Checks if the value of the field is `TWI0_SDA`"]
    #[inline(always)]
    pub fn is_twi0_sda(&self) -> bool {
        *self == PB11_SELECT_A::TWI0_SDA
    }
    #[doc = "Checks if the value of the field is `SPI1_CLK_DBI_SCLK`"]
    #[inline(always)]
    pub fn is_spi1_clk_dbi_sclk(&self) -> bool {
        *self == PB11_SELECT_A::SPI1_CLK_DBI_SCLK
    }
    #[doc = "Checks if the value of the field is `CLK_FANOUT1`"]
    #[inline(always)]
    pub fn is_clk_fanout1(&self) -> bool {
        *self == PB11_SELECT_A::CLK_FANOUT1
    }
    #[doc = "Checks if the value of the field is `UART1_CTS`"]
    #[inline(always)]
    pub fn is_uart1_cts(&self) -> bool {
        *self == PB11_SELECT_A::UART1_CTS
    }
    #[doc = "Checks if the value of the field is `PB_EINT11`"]
    #[inline(always)]
    pub fn is_pb_eint11(&self) -> bool {
        *self == PB11_SELECT_A::PB_EINT11
    }
    #[doc = "Checks if the value of the field is `IO_DISABLE`"]
    #[inline(always)]
    pub fn is_io_disable(&self) -> bool {
        *self == PB11_SELECT_A::IO_DISABLE
    }
}
#[doc = "Field `pb11_select` writer - "]
pub type PB11_SELECT_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, PB_CFG1_SPEC, u8, PB11_SELECT_A, 4, O>;
impl<'a, const O: u8> PB11_SELECT_W<'a, O> {
    #[doc = "`0`"]
    #[inline(always)]
    pub fn input(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::INPUT)
    }
    #[doc = "`1`"]
    #[inline(always)]
    pub fn output(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::OUTPUT)
    }
    #[doc = "`10`"]
    #[inline(always)]
    pub fn dmic_data0(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::DMIC_DATA0)
    }
    #[doc = "`11`"]
    #[inline(always)]
    pub fn pwm2(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::PWM2)
    }
    #[doc = "`100`"]
    #[inline(always)]
    pub fn twi0_sda(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::TWI0_SDA)
    }
    #[doc = "`101`"]
    #[inline(always)]
    pub fn spi1_clk_dbi_sclk(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::SPI1_CLK_DBI_SCLK)
    }
    #[doc = "`110`"]
    #[inline(always)]
    pub fn clk_fanout1(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::CLK_FANOUT1)
    }
    #[doc = "`111`"]
    #[inline(always)]
    pub fn uart1_cts(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::UART1_CTS)
    }
    #[doc = "`1110`"]
    #[inline(always)]
    pub fn pb_eint11(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::PB_EINT11)
    }
    #[doc = "`1111`"]
    #[inline(always)]
    pub fn io_disable(self) -> &'a mut W {
        self.variant(PB11_SELECT_A::IO_DISABLE)
    }
}
#[doc = "Field `pb12_select` reader - "]
pub type PB12_SELECT_R = crate::FieldReader<u8, PB12_SELECT_A>;
#[doc = "\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PB12_SELECT_A {
    #[doc = "0: `0`"]
    INPUT = 0,
    #[doc = "1: `1`"]
    OUTPUT = 1,
    #[doc = "2: `10`"]
    DMIC_CLK = 2,
    #[doc = "3: `11`"]
    PWM0 = 3,
    #[doc = "4: `100`"]
    OWA_IN = 4,
    #[doc = "5: `101`"]
    SPI1_CS_DBI_CSX = 5,
    #[doc = "6: `110`"]
    CLK_FANOUT2 = 6,
    #[doc = "7: `111`"]
    IR_RX = 7,
    #[doc = "14: `1110`"]
    PB_EINT12 = 14,
    #[doc = "15: `1111`"]
    IO_DISABLE = 15,
}
impl From<PB12_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: PB12_SELECT_A) -> Self {
        variant as _
    }
}
impl PB12_SELECT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<PB12_SELECT_A> {
        match self.bits {
            0 => Some(PB12_SELECT_A::INPUT),
            1 => Some(PB12_SELECT_A::OUTPUT),
            2 => Some(PB12_SELECT_A::DMIC_CLK),
            3 => Some(PB12_SELECT_A::PWM0),
            4 => Some(PB12_SELECT_A::OWA_IN),
            5 => Some(PB12_SELECT_A::SPI1_CS_DBI_CSX),
            6 => Some(PB12_SELECT_A::CLK_FANOUT2),
            7 => Some(PB12_SELECT_A::IR_RX),
            14 => Some(PB12_SELECT_A::PB_EINT12),
            15 => Some(PB12_SELECT_A::IO_DISABLE),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `INPUT`"]
    #[inline(always)]
    pub fn is_input(&self) -> bool {
        *self == PB12_SELECT_A::INPUT
    }
    #[doc = "Checks if the value of the field is `OUTPUT`"]
    #[inline(always)]
    pub fn is_output(&self) -> bool {
        *self == PB12_SELECT_A::OUTPUT
    }
    #[doc = "Checks if the value of the field is `DMIC_CLK`"]
    #[inline(always)]
    pub fn is_dmic_clk(&self) -> bool {
        *self == PB12_SELECT_A::DMIC_CLK
    }
    #[doc = "Checks if the value of the field is `PWM0`"]
    #[inline(always)]
    pub fn is_pwm0(&self) -> bool {
        *self == PB12_SELECT_A::PWM0
    }
    #[doc = "Checks if the value of the field is `OWA_IN`"]
    #[inline(always)]
    pub fn is_owa_in(&self) -> bool {
        *self == PB12_SELECT_A::OWA_IN
    }
    #[doc = "Checks if the value of the field is `SPI1_CS_DBI_CSX`"]
    #[inline(always)]
    pub fn is_spi1_cs_dbi_csx(&self) -> bool {
        *self == PB12_SELECT_A::SPI1_CS_DBI_CSX
    }
    #[doc = "Checks if the value of the field is `CLK_FANOUT2`"]
    #[inline(always)]
    pub fn is_clk_fanout2(&self) -> bool {
        *self == PB12_SELECT_A::CLK_FANOUT2
    }
    #[doc = "Checks if the value of the field is `IR_RX`"]
    #[inline(always)]
    pub fn is_ir_rx(&self) -> bool {
        *self == PB12_SELECT_A::IR_RX
    }
    #[doc = "Checks if the value of the field is `PB_EINT12`"]
    #[inline(always)]
    pub fn is_pb_eint12(&self) -> bool {
        *self == PB12_SELECT_A::PB_EINT12
    }
    #[doc = "Checks if the value of the field is `IO_DISABLE`"]
    #[inline(always)]
    pub fn is_io_disable(&self) -> bool {
        *self == PB12_SELECT_A::IO_DISABLE
    }
}
#[doc = "Field `pb12_select` writer - "]
pub type PB12_SELECT_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, PB_CFG1_SPEC, u8, PB12_SELECT_A, 4, O>;
impl<'a, const O: u8> PB12_SELECT_W<'a, O> {
    #[doc = "`0`"]
    #[inline(always)]
    pub fn input(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::INPUT)
    }
    #[doc = "`1`"]
    #[inline(always)]
    pub fn output(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::OUTPUT)
    }
    #[doc = "`10`"]
    #[inline(always)]
    pub fn dmic_clk(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::DMIC_CLK)
    }
    #[doc = "`11`"]
    #[inline(always)]
    pub fn pwm0(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::PWM0)
    }
    #[doc = "`100`"]
    #[inline(always)]
    pub fn owa_in(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::OWA_IN)
    }
    #[doc = "`101`"]
    #[inline(always)]
    pub fn spi1_cs_dbi_csx(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::SPI1_CS_DBI_CSX)
    }
    #[doc = "`110`"]
    #[inline(always)]
    pub fn clk_fanout2(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::CLK_FANOUT2)
    }
    #[doc = "`111`"]
    #[inline(always)]
    pub fn ir_rx(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::IR_RX)
    }
    #[doc = "`1110`"]
    #[inline(always)]
    pub fn pb_eint12(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::PB_EINT12)
    }
    #[doc = "`1111`"]
    #[inline(always)]
    pub fn io_disable(self) -> &'a mut W {
        self.variant(PB12_SELECT_A::IO_DISABLE)
    }
}
impl R {
    #[doc = "Bits 0:3"]
    #[inline(always)]
    pub fn pb8_select(&self) -> PB8_SELECT_R {
        PB8_SELECT_R::new((self.bits & 0x0f) as u8)
    }
    #[doc = "Bits 4:7"]
    #[inline(always)]
    pub fn pb9_select(&self) -> PB9_SELECT_R {
        PB9_SELECT_R::new(((self.bits >> 4) & 0x0f) as u8)
    }
    #[doc = "Bits 8:11"]
    #[inline(always)]
    pub fn pb10_select(&self) -> PB10_SELECT_R {
        PB10_SELECT_R::new(((self.bits >> 8) & 0x0f) as u8)
    }
    #[doc = "Bits 12:15"]
    #[inline(always)]
    pub fn pb11_select(&self) -> PB11_SELECT_R {
        PB11_SELECT_R::new(((self.bits >> 12) & 0x0f) as u8)
    }
    #[doc = "Bits 16:19"]
    #[inline(always)]
    pub fn pb12_select(&self) -> PB12_SELECT_R {
        PB12_SELECT_R::new(((self.bits >> 16) & 0x0f) as u8)
    }
}
impl W {
    #[doc = "Bits 0:3"]
    #[inline(always)]
    #[must_use]
    pub fn pb8_select(&mut self) -> PB8_SELECT_W<0> {
        PB8_SELECT_W::new(self)
    }
    #[doc = "Bits 4:7"]
    #[inline(always)]
    #[must_use]
    pub fn pb9_select(&mut self) -> PB9_SELECT_W<4> {
        PB9_SELECT_W::new(self)
    }
    #[doc = "Bits 8:11"]
    #[inline(always)]
    #[must_use]
    pub fn pb10_select(&mut self) -> PB10_SELECT_W<8> {
        PB10_SELECT_W::new(self)
    }
    #[doc = "Bits 12:15"]
    #[inline(always)]
    #[must_use]
    pub fn pb11_select(&mut self) -> PB11_SELECT_W<12> {
        PB11_SELECT_W::new(self)
    }
    #[doc = "Bits 16:19"]
    #[inline(always)]
    #[must_use]
    pub fn pb12_select(&mut self) -> PB12_SELECT_W<16> {
        PB12_SELECT_W::new(self)
    }
    #[doc = "Writes raw bits to the register."]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.0.bits(bits);
        self
    }
}
#[doc = "PB Configure Register 1\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [pb_cfg1](index.html) module"]
pub struct PB_CFG1_SPEC;
impl crate::RegisterSpec for PB_CFG1_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [pb_cfg1::R](R) reader structure"]
impl crate::Readable for PB_CFG1_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [pb_cfg1::W](W) writer structure"]
impl crate::Writable for PB_CFG1_SPEC {
    type Writer = W;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets pb_cfg1 to value 0"]
impl crate::Resettable for PB_CFG1_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}