mtb_pac_psoc6_01 0.1.1

Peripheral Access Crate for Infineon CY8C6xx6 and CY8C6xx7 PSOCâ„¢ 6 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
/*
(c) (2016-2024), Cypress Semiconductor Corporation (an Infineon company)

    or an affiliate of Cypress Semiconductor Corporation.



    SPDX-License-Identifier: Apache-2.0



    Licensed under the Apache License, Version 2.0 (the "License");

    you may not use this file except in compliance with the License.

    You may obtain a copy of the License at



      http://www.apache.org/licenses/LICENSE-2.0



    Unless required by applicable law or agreed to in writing, software

    distributed under the License is distributed on an "AS IS" BASIS,

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

    See the License for the specific language governing permissions and

    limitations under the License.
*/
// Generated from SVD 1.0, with svd2pac 0.6.0 on Tue, 27 May 2025 19:21:54 +0000

#![allow(clippy::identity_op)]
#![allow(clippy::module_inception)]
#![allow(clippy::derivable_impls)]
#[allow(unused_imports)]
use crate::common::sealed;
#[allow(unused_imports)]
use crate::common::*;
#[doc = r"Low Power Comparators"]
unsafe impl ::core::marker::Send for super::Lpcomp {}
unsafe impl ::core::marker::Sync for super::Lpcomp {}
impl super::Lpcomp {
    #[allow(unused)]
    #[inline(always)]
    pub(crate) const fn _svd2pac_as_ptr(&self) -> *mut u8 {
        self.ptr
    }

    #[doc = "LPCOMP Configuration Register"]
    #[inline(always)]
    pub const fn config(
        &self,
    ) -> &'static crate::common::Reg<self::Config_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Config_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(0usize),
            )
        }
    }

    #[doc = "LPCOMP Status Register"]
    #[inline(always)]
    pub const fn status(&self) -> &'static crate::common::Reg<self::Status_SPEC, crate::common::R> {
        unsafe {
            crate::common::Reg::<self::Status_SPEC, crate::common::R>::from_ptr(
                self._svd2pac_as_ptr().add(4usize),
            )
        }
    }

    #[doc = "LPCOMP Interrupt request register"]
    #[inline(always)]
    pub const fn intr(&self) -> &'static crate::common::Reg<self::Intr_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Intr_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(16usize),
            )
        }
    }

    #[doc = "LPCOMP Interrupt set register"]
    #[inline(always)]
    pub const fn intr_set(
        &self,
    ) -> &'static crate::common::Reg<self::IntrSet_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::IntrSet_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(20usize),
            )
        }
    }

    #[doc = "LPCOMP Interrupt request mask"]
    #[inline(always)]
    pub const fn intr_mask(
        &self,
    ) -> &'static crate::common::Reg<self::IntrMask_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::IntrMask_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(24usize),
            )
        }
    }

    #[doc = "LPCOMP Interrupt request masked"]
    #[inline(always)]
    pub const fn intr_masked(
        &self,
    ) -> &'static crate::common::Reg<self::IntrMasked_SPEC, crate::common::R> {
        unsafe {
            crate::common::Reg::<self::IntrMasked_SPEC, crate::common::R>::from_ptr(
                self._svd2pac_as_ptr().add(28usize),
            )
        }
    }

    #[doc = "Comparator 0 control Register"]
    #[inline(always)]
    pub const fn cmp0_ctrl(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp0Ctrl_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp0Ctrl_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(64usize),
            )
        }
    }

    #[doc = "Comparator 0 switch control"]
    #[inline(always)]
    pub const fn cmp0_sw(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp0Sw_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp0Sw_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(80usize),
            )
        }
    }

    #[doc = "Comparator 0 switch control clear"]
    #[inline(always)]
    pub const fn cmp0_sw_clear(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp0SwClear_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp0SwClear_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(84usize),
            )
        }
    }

    #[doc = "Comparator 1 control Register"]
    #[inline(always)]
    pub const fn cmp1_ctrl(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp1Ctrl_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp1Ctrl_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(128usize),
            )
        }
    }

    #[doc = "Comparator 1 switch control"]
    #[inline(always)]
    pub const fn cmp1_sw(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp1Sw_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp1Sw_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(144usize),
            )
        }
    }

    #[doc = "Comparator 1 switch control clear"]
    #[inline(always)]
    pub const fn cmp1_sw_clear(
        &self,
    ) -> &'static crate::common::Reg<self::Cmp1SwClear_SPEC, crate::common::RW> {
        unsafe {
            crate::common::Reg::<self::Cmp1SwClear_SPEC, crate::common::RW>::from_ptr(
                self._svd2pac_as_ptr().add(148usize),
            )
        }
    }
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Config_SPEC;
impl crate::sealed::RegSpec for Config_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Configuration Register"]
pub type Config = crate::RegValueT<Config_SPEC>;

impl Config {
    #[doc = "Enable the local reference generator circuit to generate the local Vref and Ibias. Ibias current is an  alternative to the reference current IREF generated by SRSS. This bit must be set for System Deep Sleep and System Hibernate operation."]
    #[inline(always)]
    pub fn lpref_en(
        self,
    ) -> crate::common::RegisterFieldBool<30, 1, 0, Config_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<30, 1, 0, Config_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "- 0: LPCOMP disabled (puts analog in power down, opens all switches, all clocks turned off)\n- 1: LPCOMP enabled"]
    #[inline(always)]
    pub fn enabled(
        self,
    ) -> crate::common::RegisterFieldBool<31, 1, 0, Config_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<31, 1, 0, Config_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Config {
    #[inline(always)]
    fn default() -> Config {
        <crate::RegValueT<Config_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Status_SPEC;
impl crate::sealed::RegSpec for Status_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Status Register"]
pub type Status = crate::RegValueT<Status_SPEC>;

impl Status {
    #[doc = "Current output value of the comparator 0."]
    #[inline(always)]
    pub fn out0(self) -> crate::common::RegisterFieldBool<0, 1, 0, Status_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<0, 1, 0, Status_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }

    #[doc = "Current output value of the comparator 1."]
    #[inline(always)]
    pub fn out1(self) -> crate::common::RegisterFieldBool<16, 1, 0, Status_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<16, 1, 0, Status_SPEC, crate::common::R>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Status {
    #[inline(always)]
    fn default() -> Status {
        <crate::RegValueT<Status_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Intr_SPEC;
impl crate::sealed::RegSpec for Intr_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Interrupt request register"]
pub type Intr = crate::RegValueT<Intr_SPEC>;

impl Intr {
    #[doc = "Comparator 0 Interrupt: hardware sets this interrupt when comparator 0 triggers. Write with \'1\' to clear bit."]
    #[inline(always)]
    pub fn comp0(self) -> crate::common::RegisterFieldBool<0, 1, 0, Intr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0, 1, 0, Intr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 Interrupt: hardware sets this interrupt when comparator 1 triggers. Write with \'1\' to clear bit."]
    #[inline(always)]
    pub fn comp1(self) -> crate::common::RegisterFieldBool<1, 1, 0, Intr_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, Intr_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Intr {
    #[inline(always)]
    fn default() -> Intr {
        <crate::RegValueT<Intr_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct IntrSet_SPEC;
impl crate::sealed::RegSpec for IntrSet_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Interrupt set register"]
pub type IntrSet = crate::RegValueT<IntrSet_SPEC>;

impl IntrSet {
    #[doc = "Write with \'1\' to set corresponding bit in interrupt request register."]
    #[inline(always)]
    pub fn comp0(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, IntrSet_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0, 1, 0, IntrSet_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Write with \'1\' to set corresponding bit in interrupt request register."]
    #[inline(always)]
    pub fn comp1(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, IntrSet_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, IntrSet_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for IntrSet {
    #[inline(always)]
    fn default() -> IntrSet {
        <crate::RegValueT<IntrSet_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct IntrMask_SPEC;
impl crate::sealed::RegSpec for IntrMask_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Interrupt request mask"]
pub type IntrMask = crate::RegValueT<IntrMask_SPEC>;

impl IntrMask {
    #[doc = "Mask bit for corresponding bit in interrupt request register."]
    #[inline(always)]
    pub fn comp0_mask(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, IntrMask_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0, 1, 0, IntrMask_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Mask bit for corresponding bit in interrupt request register."]
    #[inline(always)]
    pub fn comp1_mask(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, IntrMask_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, IntrMask_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for IntrMask {
    #[inline(always)]
    fn default() -> IntrMask {
        <crate::RegValueT<IntrMask_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct IntrMasked_SPEC;
impl crate::sealed::RegSpec for IntrMasked_SPEC {
    type DataType = u32;
}

#[doc = "LPCOMP Interrupt request masked"]
pub type IntrMasked = crate::RegValueT<IntrMasked_SPEC>;

impl IntrMasked {
    #[doc = "Logical and of corresponding request and mask bits."]
    #[inline(always)]
    pub fn comp0_masked(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, IntrMasked_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<0,1,0,IntrMasked_SPEC,crate::common::R>::from_register(self,0)
    }

    #[doc = "Logical and of corresponding request and mask bits."]
    #[inline(always)]
    pub fn comp1_masked(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, IntrMasked_SPEC, crate::common::R> {
        crate::common::RegisterFieldBool::<1,1,0,IntrMasked_SPEC,crate::common::R>::from_register(self,0)
    }
}
impl ::core::default::Default for IntrMasked {
    #[inline(always)]
    fn default() -> IntrMasked {
        <crate::RegValueT<IntrMasked_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp0Ctrl_SPEC;
impl crate::sealed::RegSpec for Cmp0Ctrl_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 0 control Register"]
pub type Cmp0Ctrl = crate::RegValueT<Cmp0Ctrl_SPEC>;

impl Cmp0Ctrl {
    #[doc = "N/A"]
    #[inline(always)]
    pub fn mode0(
        self,
    ) -> crate::common::RegisterField<
        0,
        0x3,
        1,
        0,
        cmp0_ctrl::Mode0,
        cmp0_ctrl::Mode0,
        Cmp0Ctrl_SPEC,
        crate::common::RW,
    > {
        crate::common::RegisterField::<
            0,
            0x3,
            1,
            0,
            cmp0_ctrl::Mode0,
            cmp0_ctrl::Mode0,
            Cmp0Ctrl_SPEC,
            crate::common::RW,
        >::from_register(self, 0)
    }

    #[doc = "Add hysteresis to the comparator\n0= Disable Hysteresis\n1= Enable Hysteresis"]
    #[inline(always)]
    pub fn hyst0(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp0Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5, 1, 0, Cmp0Ctrl_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "N/A"]
    #[inline(always)]
    pub fn inttype0(
        self,
    ) -> crate::common::RegisterField<
        6,
        0x3,
        1,
        0,
        cmp0_ctrl::Inttype0,
        cmp0_ctrl::Inttype0,
        Cmp0Ctrl_SPEC,
        crate::common::RW,
    > {
        crate::common::RegisterField::<
            6,
            0x3,
            1,
            0,
            cmp0_ctrl::Inttype0,
            cmp0_ctrl::Inttype0,
            Cmp0Ctrl_SPEC,
            crate::common::RW,
        >::from_register(self, 0)
    }

    #[doc = "Asynchronous: bypass comparator output synchronization: \n0=synchronize (level or pulse)\n1=bypass (output async)\nNote that in System Deep Sleep mode, this bit needs to be set to observe the output on the dedicated pin."]
    #[inline(always)]
    pub fn dsi_bypass0(
        self,
    ) -> crate::common::RegisterFieldBool<10, 1, 0, Cmp0Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<10,1,0,Cmp0Ctrl_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "Synchronous comparator output (trigger): \n0=pulse \n1=level"]
    #[inline(always)]
    pub fn dsi_level0(
        self,
    ) -> crate::common::RegisterFieldBool<11, 1, 0, Cmp0Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<11,1,0,Cmp0Ctrl_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Cmp0Ctrl {
    #[inline(always)]
    fn default() -> Cmp0Ctrl {
        <crate::RegValueT<Cmp0Ctrl_SPEC> as RegisterValue<_>>::new(0)
    }
}
pub mod cmp0_ctrl {

    #[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd)]
    pub struct Mode0_SPEC;
    pub type Mode0 = crate::EnumBitfieldStruct<u8, Mode0_SPEC>;
    impl Mode0 {
        #[doc = "Off"]
        pub const OFF: Self = Self::new(0);

        #[doc = "Ultra lowpower operating mode (uses less power, < 300nA), must be used for DeepSleep or Hibernate. Only in this mode a local iref will be used."]
        pub const ULP: Self = Self::new(1);

        #[doc = "Low Power operating mode (uses more power, <10uA @@@ TBD). In this mode the iref from SRSS will be used."]
        pub const LP: Self = Self::new(2);

        #[doc = "Normal, full speed power operating mode (uses <150uA). In this mode the iref from SRSS will be used."]
        pub const NORMAL: Self = Self::new(3);
    }
    #[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd)]
    pub struct Inttype0_SPEC;
    pub type Inttype0 = crate::EnumBitfieldStruct<u8, Inttype0_SPEC>;
    impl Inttype0 {
        #[doc = "Disabled, no interrupts will be detected"]
        pub const DISABLE: Self = Self::new(0);

        #[doc = "Rising edge"]
        pub const RISING: Self = Self::new(1);

        #[doc = "Falling edge"]
        pub const FALLING: Self = Self::new(2);

        #[doc = "Both rising and falling edges"]
        pub const BOTH: Self = Self::new(3);
    }
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp0Sw_SPEC;
impl crate::sealed::RegSpec for Cmp0Sw_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 0 switch control"]
pub type Cmp0Sw = crate::RegValueT<Cmp0Sw_SPEC>;

impl Cmp0Sw {
    #[doc = "Comparator 0 positive terminal isolation switch to GPIO"]
    #[inline(always)]
    pub fn cmp0_ip0(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 positive terminal  switch to amuxbusA"]
    #[inline(always)]
    pub fn cmp0_ap0(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 positive terminal  switch to amuxbusB"]
    #[inline(always)]
    pub fn cmp0_bp0(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<2, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 negative terminal isolation switch to GPIO"]
    #[inline(always)]
    pub fn cmp0_in0(
        self,
    ) -> crate::common::RegisterFieldBool<4, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<4, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 negative terminal  switch to amuxbusA"]
    #[inline(always)]
    pub fn cmp0_an0(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 negative terminal  switch to amuxbusB"]
    #[inline(always)]
    pub fn cmp0_bn0(
        self,
    ) -> crate::common::RegisterFieldBool<6, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<6, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 0 negative terminal  switch to local Vref  (LPREF_EN must be set)"]
    #[inline(always)]
    pub fn cmp0_vn0(
        self,
    ) -> crate::common::RegisterFieldBool<7, 1, 0, Cmp0Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<7, 1, 0, Cmp0Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Cmp0Sw {
    #[inline(always)]
    fn default() -> Cmp0Sw {
        <crate::RegValueT<Cmp0Sw_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp0SwClear_SPEC;
impl crate::sealed::RegSpec for Cmp0SwClear_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 0 switch control clear"]
pub type Cmp0SwClear = crate::RegValueT<Cmp0SwClear_SPEC>;

impl Cmp0SwClear {
    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_ip0(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_ap0(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_bp0(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<2,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_in0(
        self,
    ) -> crate::common::RegisterFieldBool<4, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<4,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_an0(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_bn0(
        self,
    ) -> crate::common::RegisterFieldBool<6, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<6,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP0_SW"]
    #[inline(always)]
    pub fn cmp0_vn0(
        self,
    ) -> crate::common::RegisterFieldBool<7, 1, 0, Cmp0SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<7,1,0,Cmp0SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Cmp0SwClear {
    #[inline(always)]
    fn default() -> Cmp0SwClear {
        <crate::RegValueT<Cmp0SwClear_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp1Ctrl_SPEC;
impl crate::sealed::RegSpec for Cmp1Ctrl_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 1 control Register"]
pub type Cmp1Ctrl = crate::RegValueT<Cmp1Ctrl_SPEC>;

impl Cmp1Ctrl {
    #[doc = "N/A"]
    #[inline(always)]
    pub fn mode1(
        self,
    ) -> crate::common::RegisterField<
        0,
        0x3,
        1,
        0,
        cmp1_ctrl::Mode1,
        cmp1_ctrl::Mode1,
        Cmp1Ctrl_SPEC,
        crate::common::RW,
    > {
        crate::common::RegisterField::<
            0,
            0x3,
            1,
            0,
            cmp1_ctrl::Mode1,
            cmp1_ctrl::Mode1,
            Cmp1Ctrl_SPEC,
            crate::common::RW,
        >::from_register(self, 0)
    }

    #[doc = "Add hysteresis to the comparator\n0= Disable Hysteresis\n1= Enable Hysteresis"]
    #[inline(always)]
    pub fn hyst1(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp1Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5, 1, 0, Cmp1Ctrl_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "N/A"]
    #[inline(always)]
    pub fn inttype1(
        self,
    ) -> crate::common::RegisterField<
        6,
        0x3,
        1,
        0,
        cmp1_ctrl::Inttype1,
        cmp1_ctrl::Inttype1,
        Cmp1Ctrl_SPEC,
        crate::common::RW,
    > {
        crate::common::RegisterField::<
            6,
            0x3,
            1,
            0,
            cmp1_ctrl::Inttype1,
            cmp1_ctrl::Inttype1,
            Cmp1Ctrl_SPEC,
            crate::common::RW,
        >::from_register(self, 0)
    }

    #[doc = "Asynchronous: bypass comparator output synchronization: \n0=synchronize (level or pulse)\n1=bypass (output async)\nNote that in System Deep Sleep mode, this bit needs to be set to observe the output on the dedicated pin."]
    #[inline(always)]
    pub fn dsi_bypass1(
        self,
    ) -> crate::common::RegisterFieldBool<10, 1, 0, Cmp1Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<10,1,0,Cmp1Ctrl_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "Synchronous comparator output (trigger): \n0=pulse \n1=level"]
    #[inline(always)]
    pub fn dsi_level1(
        self,
    ) -> crate::common::RegisterFieldBool<11, 1, 0, Cmp1Ctrl_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<11,1,0,Cmp1Ctrl_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Cmp1Ctrl {
    #[inline(always)]
    fn default() -> Cmp1Ctrl {
        <crate::RegValueT<Cmp1Ctrl_SPEC> as RegisterValue<_>>::new(0)
    }
}
pub mod cmp1_ctrl {

    #[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd)]
    pub struct Mode1_SPEC;
    pub type Mode1 = crate::EnumBitfieldStruct<u8, Mode1_SPEC>;
    impl Mode1 {
        #[doc = "Off"]
        pub const OFF: Self = Self::new(0);

        #[doc = "Ultra lowpower operating mode (uses less power, < 300nA), must be used for DeepSleep or Hibernate. Only in this mode a local iref will be used."]
        pub const ULP: Self = Self::new(1);

        #[doc = "Low Power operating mode (uses more power, <10uA @@@ TBD). In this mode the iref from SRSS will be used."]
        pub const LP: Self = Self::new(2);

        #[doc = "Normal, full speed power operating mode (uses <150uA). In this mode the iref from SRSS will be used."]
        pub const NORMAL: Self = Self::new(3);
    }
    #[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd)]
    pub struct Inttype1_SPEC;
    pub type Inttype1 = crate::EnumBitfieldStruct<u8, Inttype1_SPEC>;
    impl Inttype1 {
        #[doc = "Disabled, no interrupts will be detected"]
        pub const DISABLE: Self = Self::new(0);

        #[doc = "Rising edge"]
        pub const RISING: Self = Self::new(1);

        #[doc = "Falling edge"]
        pub const FALLING: Self = Self::new(2);

        #[doc = "Both rising and falling edges"]
        pub const BOTH: Self = Self::new(3);
    }
}
#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp1Sw_SPEC;
impl crate::sealed::RegSpec for Cmp1Sw_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 1 switch control"]
pub type Cmp1Sw = crate::RegValueT<Cmp1Sw_SPEC>;

impl Cmp1Sw {
    #[doc = "Comparator 1 positive terminal isolation switch to GPIO"]
    #[inline(always)]
    pub fn cmp1_ip1(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 positive terminal  switch to amuxbusA"]
    #[inline(always)]
    pub fn cmp1_ap1(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 positive terminal  switch to amuxbusB"]
    #[inline(always)]
    pub fn cmp1_bp1(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<2, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 negative terminal isolation switch to GPIO"]
    #[inline(always)]
    pub fn cmp1_in1(
        self,
    ) -> crate::common::RegisterFieldBool<4, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<4, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 negative terminal  switch to amuxbusA"]
    #[inline(always)]
    pub fn cmp1_an1(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 negative terminal  switch to amuxbusB"]
    #[inline(always)]
    pub fn cmp1_bn1(
        self,
    ) -> crate::common::RegisterFieldBool<6, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<6, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }

    #[doc = "Comparator 1 negative terminal  switch to local Vref  (LPREF_EN must be set)"]
    #[inline(always)]
    pub fn cmp1_vn1(
        self,
    ) -> crate::common::RegisterFieldBool<7, 1, 0, Cmp1Sw_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<7, 1, 0, Cmp1Sw_SPEC, crate::common::RW>::from_register(
            self, 0,
        )
    }
}
impl ::core::default::Default for Cmp1Sw {
    #[inline(always)]
    fn default() -> Cmp1Sw {
        <crate::RegValueT<Cmp1Sw_SPEC> as RegisterValue<_>>::new(0)
    }
}

#[doc(hidden)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Cmp1SwClear_SPEC;
impl crate::sealed::RegSpec for Cmp1SwClear_SPEC {
    type DataType = u32;
}

#[doc = "Comparator 1 switch control clear"]
pub type Cmp1SwClear = crate::RegValueT<Cmp1SwClear_SPEC>;

impl Cmp1SwClear {
    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_ip1(
        self,
    ) -> crate::common::RegisterFieldBool<0, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<0,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_ap1(
        self,
    ) -> crate::common::RegisterFieldBool<1, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<1,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_bp1(
        self,
    ) -> crate::common::RegisterFieldBool<2, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<2,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_in1(
        self,
    ) -> crate::common::RegisterFieldBool<4, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<4,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_an1(
        self,
    ) -> crate::common::RegisterFieldBool<5, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<5,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_bn1(
        self,
    ) -> crate::common::RegisterFieldBool<6, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<6,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }

    #[doc = "see corresponding bit in CMP1_SW"]
    #[inline(always)]
    pub fn cmp1_vn1(
        self,
    ) -> crate::common::RegisterFieldBool<7, 1, 0, Cmp1SwClear_SPEC, crate::common::RW> {
        crate::common::RegisterFieldBool::<7,1,0,Cmp1SwClear_SPEC,crate::common::RW>::from_register(self,0)
    }
}
impl ::core::default::Default for Cmp1SwClear {
    #[inline(always)]
    fn default() -> Cmp1SwClear {
        <crate::RegValueT<Cmp1SwClear_SPEC> as RegisterValue<_>>::new(0)
    }
}