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
#[doc = "Reader of register CTRL2"]
pub type R = crate::R<u16, super::CTRL2>;
#[doc = "Writer for register CTRL2"]
pub type W = crate::W<u16, super::CTRL2>;
#[doc = "Register CTRL2 `reset()`'s with value 0"]
impl crate::ResetValue for super::CTRL2 {
    type Type = u16;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Update Hold Registers\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum UPDHLD_A {
    #[doc = "0: Disable updates of hold registers on rising edge of TRIGGER"]
    UPDHLD_0 = 0,
    #[doc = "1: Enable updates of hold registers on rising edge of TRIGGER"]
    UPDHLD_1 = 1,
}
impl From<UPDHLD_A> for bool {
    #[inline(always)]
    fn from(variant: UPDHLD_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `UPDHLD`"]
pub type UPDHLD_R = crate::R<bool, UPDHLD_A>;
impl UPDHLD_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UPDHLD_A {
        match self.bits {
            false => UPDHLD_A::UPDHLD_0,
            true => UPDHLD_A::UPDHLD_1,
        }
    }
    #[doc = "Checks if the value of the field is `UPDHLD_0`"]
    #[inline(always)]
    pub fn is_updhld_0(&self) -> bool {
        *self == UPDHLD_A::UPDHLD_0
    }
    #[doc = "Checks if the value of the field is `UPDHLD_1`"]
    #[inline(always)]
    pub fn is_updhld_1(&self) -> bool {
        *self == UPDHLD_A::UPDHLD_1
    }
}
#[doc = "Write proxy for field `UPDHLD`"]
pub struct UPDHLD_W<'a> {
    w: &'a mut W,
}
impl<'a> UPDHLD_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: UPDHLD_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable updates of hold registers on rising edge of TRIGGER"]
    #[inline(always)]
    pub fn updhld_0(self) -> &'a mut W {
        self.variant(UPDHLD_A::UPDHLD_0)
    }
    #[doc = "Enable updates of hold registers on rising edge of TRIGGER"]
    #[inline(always)]
    pub fn updhld_1(self) -> &'a mut W {
        self.variant(UPDHLD_A::UPDHLD_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x01) | ((value as u16) & 0x01);
        self.w
    }
}
#[doc = "Update Position Registers\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum UPDPOS_A {
    #[doc = "0: No action for POSD, REV, UPOS and LPOS on rising edge of TRIGGER"]
    UPDPOS_0 = 0,
    #[doc = "1: Clear POSD, REV, UPOS and LPOS on rising edge of TRIGGER"]
    UPDPOS_1 = 1,
}
impl From<UPDPOS_A> for bool {
    #[inline(always)]
    fn from(variant: UPDPOS_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `UPDPOS`"]
pub type UPDPOS_R = crate::R<bool, UPDPOS_A>;
impl UPDPOS_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UPDPOS_A {
        match self.bits {
            false => UPDPOS_A::UPDPOS_0,
            true => UPDPOS_A::UPDPOS_1,
        }
    }
    #[doc = "Checks if the value of the field is `UPDPOS_0`"]
    #[inline(always)]
    pub fn is_updpos_0(&self) -> bool {
        *self == UPDPOS_A::UPDPOS_0
    }
    #[doc = "Checks if the value of the field is `UPDPOS_1`"]
    #[inline(always)]
    pub fn is_updpos_1(&self) -> bool {
        *self == UPDPOS_A::UPDPOS_1
    }
}
#[doc = "Write proxy for field `UPDPOS`"]
pub struct UPDPOS_W<'a> {
    w: &'a mut W,
}
impl<'a> UPDPOS_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: UPDPOS_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "No action for POSD, REV, UPOS and LPOS on rising edge of TRIGGER"]
    #[inline(always)]
    pub fn updpos_0(self) -> &'a mut W {
        self.variant(UPDPOS_A::UPDPOS_0)
    }
    #[doc = "Clear POSD, REV, UPOS and LPOS on rising edge of TRIGGER"]
    #[inline(always)]
    pub fn updpos_1(self) -> &'a mut W {
        self.variant(UPDPOS_A::UPDPOS_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u16) & 0x01) << 1);
        self.w
    }
}
#[doc = "Enable Modulo Counting\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum MOD_A {
    #[doc = "0: Disable modulo counting"]
    MOD_0 = 0,
    #[doc = "1: Enable modulo counting"]
    MOD_1 = 1,
}
impl From<MOD_A> for bool {
    #[inline(always)]
    fn from(variant: MOD_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `MOD`"]
pub type MOD_R = crate::R<bool, MOD_A>;
impl MOD_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> MOD_A {
        match self.bits {
            false => MOD_A::MOD_0,
            true => MOD_A::MOD_1,
        }
    }
    #[doc = "Checks if the value of the field is `MOD_0`"]
    #[inline(always)]
    pub fn is_mod_0(&self) -> bool {
        *self == MOD_A::MOD_0
    }
    #[doc = "Checks if the value of the field is `MOD_1`"]
    #[inline(always)]
    pub fn is_mod_1(&self) -> bool {
        *self == MOD_A::MOD_1
    }
}
#[doc = "Write proxy for field `MOD`"]
pub struct MOD_W<'a> {
    w: &'a mut W,
}
impl<'a> MOD_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: MOD_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable modulo counting"]
    #[inline(always)]
    pub fn mod_0(self) -> &'a mut W {
        self.variant(MOD_A::MOD_0)
    }
    #[doc = "Enable modulo counting"]
    #[inline(always)]
    pub fn mod_1(self) -> &'a mut W {
        self.variant(MOD_A::MOD_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u16) & 0x01) << 2);
        self.w
    }
}
#[doc = "Count Direction Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DIR_A {
    #[doc = "0: Last count was in the down direction"]
    DIR_0 = 0,
    #[doc = "1: Last count was in the up direction"]
    DIR_1 = 1,
}
impl From<DIR_A> for bool {
    #[inline(always)]
    fn from(variant: DIR_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `DIR`"]
pub type DIR_R = crate::R<bool, DIR_A>;
impl DIR_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DIR_A {
        match self.bits {
            false => DIR_A::DIR_0,
            true => DIR_A::DIR_1,
        }
    }
    #[doc = "Checks if the value of the field is `DIR_0`"]
    #[inline(always)]
    pub fn is_dir_0(&self) -> bool {
        *self == DIR_A::DIR_0
    }
    #[doc = "Checks if the value of the field is `DIR_1`"]
    #[inline(always)]
    pub fn is_dir_1(&self) -> bool {
        *self == DIR_A::DIR_1
    }
}
#[doc = "Roll-under Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RUIE_A {
    #[doc = "0: Roll-under interrupt is disabled"]
    RUIE_0 = 0,
    #[doc = "1: Roll-under interrupt is enabled"]
    RUIE_1 = 1,
}
impl From<RUIE_A> for bool {
    #[inline(always)]
    fn from(variant: RUIE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `RUIE`"]
pub type RUIE_R = crate::R<bool, RUIE_A>;
impl RUIE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> RUIE_A {
        match self.bits {
            false => RUIE_A::RUIE_0,
            true => RUIE_A::RUIE_1,
        }
    }
    #[doc = "Checks if the value of the field is `RUIE_0`"]
    #[inline(always)]
    pub fn is_ruie_0(&self) -> bool {
        *self == RUIE_A::RUIE_0
    }
    #[doc = "Checks if the value of the field is `RUIE_1`"]
    #[inline(always)]
    pub fn is_ruie_1(&self) -> bool {
        *self == RUIE_A::RUIE_1
    }
}
#[doc = "Write proxy for field `RUIE`"]
pub struct RUIE_W<'a> {
    w: &'a mut W,
}
impl<'a> RUIE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: RUIE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Roll-under interrupt is disabled"]
    #[inline(always)]
    pub fn ruie_0(self) -> &'a mut W {
        self.variant(RUIE_A::RUIE_0)
    }
    #[doc = "Roll-under interrupt is enabled"]
    #[inline(always)]
    pub fn ruie_1(self) -> &'a mut W {
        self.variant(RUIE_A::RUIE_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 4)) | (((value as u16) & 0x01) << 4);
        self.w
    }
}
#[doc = "Roll-under Interrupt Request\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RUIRQ_A {
    #[doc = "0: No roll-under has occurred"]
    RUIRQ_0 = 0,
    #[doc = "1: Roll-under has occurred"]
    RUIRQ_1 = 1,
}
impl From<RUIRQ_A> for bool {
    #[inline(always)]
    fn from(variant: RUIRQ_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `RUIRQ`"]
pub type RUIRQ_R = crate::R<bool, RUIRQ_A>;
impl RUIRQ_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> RUIRQ_A {
        match self.bits {
            false => RUIRQ_A::RUIRQ_0,
            true => RUIRQ_A::RUIRQ_1,
        }
    }
    #[doc = "Checks if the value of the field is `RUIRQ_0`"]
    #[inline(always)]
    pub fn is_ruirq_0(&self) -> bool {
        *self == RUIRQ_A::RUIRQ_0
    }
    #[doc = "Checks if the value of the field is `RUIRQ_1`"]
    #[inline(always)]
    pub fn is_ruirq_1(&self) -> bool {
        *self == RUIRQ_A::RUIRQ_1
    }
}
#[doc = "Write proxy for field `RUIRQ`"]
pub struct RUIRQ_W<'a> {
    w: &'a mut W,
}
impl<'a> RUIRQ_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: RUIRQ_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "No roll-under has occurred"]
    #[inline(always)]
    pub fn ruirq_0(self) -> &'a mut W {
        self.variant(RUIRQ_A::RUIRQ_0)
    }
    #[doc = "Roll-under has occurred"]
    #[inline(always)]
    pub fn ruirq_1(self) -> &'a mut W {
        self.variant(RUIRQ_A::RUIRQ_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 5)) | (((value as u16) & 0x01) << 5);
        self.w
    }
}
#[doc = "Roll-over Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ROIE_A {
    #[doc = "0: Roll-over interrupt is disabled"]
    ROIE_0 = 0,
    #[doc = "1: Roll-over interrupt is enabled"]
    ROIE_1 = 1,
}
impl From<ROIE_A> for bool {
    #[inline(always)]
    fn from(variant: ROIE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ROIE`"]
pub type ROIE_R = crate::R<bool, ROIE_A>;
impl ROIE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ROIE_A {
        match self.bits {
            false => ROIE_A::ROIE_0,
            true => ROIE_A::ROIE_1,
        }
    }
    #[doc = "Checks if the value of the field is `ROIE_0`"]
    #[inline(always)]
    pub fn is_roie_0(&self) -> bool {
        *self == ROIE_A::ROIE_0
    }
    #[doc = "Checks if the value of the field is `ROIE_1`"]
    #[inline(always)]
    pub fn is_roie_1(&self) -> bool {
        *self == ROIE_A::ROIE_1
    }
}
#[doc = "Write proxy for field `ROIE`"]
pub struct ROIE_W<'a> {
    w: &'a mut W,
}
impl<'a> ROIE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ROIE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Roll-over interrupt is disabled"]
    #[inline(always)]
    pub fn roie_0(self) -> &'a mut W {
        self.variant(ROIE_A::ROIE_0)
    }
    #[doc = "Roll-over interrupt is enabled"]
    #[inline(always)]
    pub fn roie_1(self) -> &'a mut W {
        self.variant(ROIE_A::ROIE_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 6)) | (((value as u16) & 0x01) << 6);
        self.w
    }
}
#[doc = "Roll-over Interrupt Request\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ROIRQ_A {
    #[doc = "0: No roll-over has occurred"]
    ROIRQ_0 = 0,
    #[doc = "1: Roll-over has occurred"]
    ROIRQ_1 = 1,
}
impl From<ROIRQ_A> for bool {
    #[inline(always)]
    fn from(variant: ROIRQ_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ROIRQ`"]
pub type ROIRQ_R = crate::R<bool, ROIRQ_A>;
impl ROIRQ_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ROIRQ_A {
        match self.bits {
            false => ROIRQ_A::ROIRQ_0,
            true => ROIRQ_A::ROIRQ_1,
        }
    }
    #[doc = "Checks if the value of the field is `ROIRQ_0`"]
    #[inline(always)]
    pub fn is_roirq_0(&self) -> bool {
        *self == ROIRQ_A::ROIRQ_0
    }
    #[doc = "Checks if the value of the field is `ROIRQ_1`"]
    #[inline(always)]
    pub fn is_roirq_1(&self) -> bool {
        *self == ROIRQ_A::ROIRQ_1
    }
}
#[doc = "Write proxy for field `ROIRQ`"]
pub struct ROIRQ_W<'a> {
    w: &'a mut W,
}
impl<'a> ROIRQ_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ROIRQ_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "No roll-over has occurred"]
    #[inline(always)]
    pub fn roirq_0(self) -> &'a mut W {
        self.variant(ROIRQ_A::ROIRQ_0)
    }
    #[doc = "Roll-over has occurred"]
    #[inline(always)]
    pub fn roirq_1(self) -> &'a mut W {
        self.variant(ROIRQ_A::ROIRQ_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u16) & 0x01) << 7);
        self.w
    }
}
#[doc = "Revolution Counter Modulus Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum REVMOD_A {
    #[doc = "0: Use INDEX pulse to increment/decrement revolution counter (REV)."]
    REVMOD_0 = 0,
    #[doc = "1: Use modulus counting roll-over/under to increment/decrement revolution counter (REV)."]
    REVMOD_1 = 1,
}
impl From<REVMOD_A> for bool {
    #[inline(always)]
    fn from(variant: REVMOD_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `REVMOD`"]
pub type REVMOD_R = crate::R<bool, REVMOD_A>;
impl REVMOD_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> REVMOD_A {
        match self.bits {
            false => REVMOD_A::REVMOD_0,
            true => REVMOD_A::REVMOD_1,
        }
    }
    #[doc = "Checks if the value of the field is `REVMOD_0`"]
    #[inline(always)]
    pub fn is_revmod_0(&self) -> bool {
        *self == REVMOD_A::REVMOD_0
    }
    #[doc = "Checks if the value of the field is `REVMOD_1`"]
    #[inline(always)]
    pub fn is_revmod_1(&self) -> bool {
        *self == REVMOD_A::REVMOD_1
    }
}
#[doc = "Write proxy for field `REVMOD`"]
pub struct REVMOD_W<'a> {
    w: &'a mut W,
}
impl<'a> REVMOD_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: REVMOD_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Use INDEX pulse to increment/decrement revolution counter (REV)."]
    #[inline(always)]
    pub fn revmod_0(self) -> &'a mut W {
        self.variant(REVMOD_A::REVMOD_0)
    }
    #[doc = "Use modulus counting roll-over/under to increment/decrement revolution counter (REV)."]
    #[inline(always)]
    pub fn revmod_1(self) -> &'a mut W {
        self.variant(REVMOD_A::REVMOD_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u16) & 0x01) << 8);
        self.w
    }
}
#[doc = "Output Control\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OUTCTL_A {
    #[doc = "0: POSMATCH pulses when a match occurs between the position counters (POS) and the compare value (COMP)."]
    OUTCTL_0 = 0,
    #[doc = "1: POSMATCH pulses when the UPOS, LPOS, REV, or POSD registers are read."]
    OUTCTL_1 = 1,
}
impl From<OUTCTL_A> for bool {
    #[inline(always)]
    fn from(variant: OUTCTL_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `OUTCTL`"]
pub type OUTCTL_R = crate::R<bool, OUTCTL_A>;
impl OUTCTL_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> OUTCTL_A {
        match self.bits {
            false => OUTCTL_A::OUTCTL_0,
            true => OUTCTL_A::OUTCTL_1,
        }
    }
    #[doc = "Checks if the value of the field is `OUTCTL_0`"]
    #[inline(always)]
    pub fn is_outctl_0(&self) -> bool {
        *self == OUTCTL_A::OUTCTL_0
    }
    #[doc = "Checks if the value of the field is `OUTCTL_1`"]
    #[inline(always)]
    pub fn is_outctl_1(&self) -> bool {
        *self == OUTCTL_A::OUTCTL_1
    }
}
#[doc = "Write proxy for field `OUTCTL`"]
pub struct OUTCTL_W<'a> {
    w: &'a mut W,
}
impl<'a> OUTCTL_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: OUTCTL_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "POSMATCH pulses when a match occurs between the position counters (POS) and the compare value (COMP)."]
    #[inline(always)]
    pub fn outctl_0(self) -> &'a mut W {
        self.variant(OUTCTL_A::OUTCTL_0)
    }
    #[doc = "POSMATCH pulses when the UPOS, LPOS, REV, or POSD registers are read."]
    #[inline(always)]
    pub fn outctl_1(self) -> &'a mut W {
        self.variant(OUTCTL_A::OUTCTL_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 9)) | (((value as u16) & 0x01) << 9);
        self.w
    }
}
#[doc = "Simultaneous PHASEA and PHASEB Change Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SABIE_A {
    #[doc = "0: Simultaneous PHASEA and PHASEB change interrupt disabled."]
    SABIE_0 = 0,
    #[doc = "1: Simultaneous PHASEA and PHASEB change interrupt enabled."]
    SABIE_1 = 1,
}
impl From<SABIE_A> for bool {
    #[inline(always)]
    fn from(variant: SABIE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SABIE`"]
pub type SABIE_R = crate::R<bool, SABIE_A>;
impl SABIE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SABIE_A {
        match self.bits {
            false => SABIE_A::SABIE_0,
            true => SABIE_A::SABIE_1,
        }
    }
    #[doc = "Checks if the value of the field is `SABIE_0`"]
    #[inline(always)]
    pub fn is_sabie_0(&self) -> bool {
        *self == SABIE_A::SABIE_0
    }
    #[doc = "Checks if the value of the field is `SABIE_1`"]
    #[inline(always)]
    pub fn is_sabie_1(&self) -> bool {
        *self == SABIE_A::SABIE_1
    }
}
#[doc = "Write proxy for field `SABIE`"]
pub struct SABIE_W<'a> {
    w: &'a mut W,
}
impl<'a> SABIE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SABIE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Simultaneous PHASEA and PHASEB change interrupt disabled."]
    #[inline(always)]
    pub fn sabie_0(self) -> &'a mut W {
        self.variant(SABIE_A::SABIE_0)
    }
    #[doc = "Simultaneous PHASEA and PHASEB change interrupt enabled."]
    #[inline(always)]
    pub fn sabie_1(self) -> &'a mut W {
        self.variant(SABIE_A::SABIE_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 10)) | (((value as u16) & 0x01) << 10);
        self.w
    }
}
#[doc = "Simultaneous PHASEA and PHASEB Change Interrupt Request\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SABIRQ_A {
    #[doc = "0: No simultaneous change of PHASEA and PHASEB has occurred."]
    SABIRQ_0 = 0,
    #[doc = "1: A simultaneous change of PHASEA and PHASEB has occurred."]
    SABIRQ_1 = 1,
}
impl From<SABIRQ_A> for bool {
    #[inline(always)]
    fn from(variant: SABIRQ_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SABIRQ`"]
pub type SABIRQ_R = crate::R<bool, SABIRQ_A>;
impl SABIRQ_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SABIRQ_A {
        match self.bits {
            false => SABIRQ_A::SABIRQ_0,
            true => SABIRQ_A::SABIRQ_1,
        }
    }
    #[doc = "Checks if the value of the field is `SABIRQ_0`"]
    #[inline(always)]
    pub fn is_sabirq_0(&self) -> bool {
        *self == SABIRQ_A::SABIRQ_0
    }
    #[doc = "Checks if the value of the field is `SABIRQ_1`"]
    #[inline(always)]
    pub fn is_sabirq_1(&self) -> bool {
        *self == SABIRQ_A::SABIRQ_1
    }
}
#[doc = "Write proxy for field `SABIRQ`"]
pub struct SABIRQ_W<'a> {
    w: &'a mut W,
}
impl<'a> SABIRQ_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SABIRQ_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "No simultaneous change of PHASEA and PHASEB has occurred."]
    #[inline(always)]
    pub fn sabirq_0(self) -> &'a mut W {
        self.variant(SABIRQ_A::SABIRQ_0)
    }
    #[doc = "A simultaneous change of PHASEA and PHASEB has occurred."]
    #[inline(always)]
    pub fn sabirq_1(self) -> &'a mut W {
        self.variant(SABIRQ_A::SABIRQ_1)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 11)) | (((value as u16) & 0x01) << 11);
        self.w
    }
}
impl R {
    #[doc = "Bit 0 - Update Hold Registers"]
    #[inline(always)]
    pub fn updhld(&self) -> UPDHLD_R {
        UPDHLD_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - Update Position Registers"]
    #[inline(always)]
    pub fn updpos(&self) -> UPDPOS_R {
        UPDPOS_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 2 - Enable Modulo Counting"]
    #[inline(always)]
    pub fn mod_(&self) -> MOD_R {
        MOD_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 3 - Count Direction Flag"]
    #[inline(always)]
    pub fn dir(&self) -> DIR_R {
        DIR_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 4 - Roll-under Interrupt Enable"]
    #[inline(always)]
    pub fn ruie(&self) -> RUIE_R {
        RUIE_R::new(((self.bits >> 4) & 0x01) != 0)
    }
    #[doc = "Bit 5 - Roll-under Interrupt Request"]
    #[inline(always)]
    pub fn ruirq(&self) -> RUIRQ_R {
        RUIRQ_R::new(((self.bits >> 5) & 0x01) != 0)
    }
    #[doc = "Bit 6 - Roll-over Interrupt Enable"]
    #[inline(always)]
    pub fn roie(&self) -> ROIE_R {
        ROIE_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - Roll-over Interrupt Request"]
    #[inline(always)]
    pub fn roirq(&self) -> ROIRQ_R {
        ROIRQ_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bit 8 - Revolution Counter Modulus Enable"]
    #[inline(always)]
    pub fn revmod(&self) -> REVMOD_R {
        REVMOD_R::new(((self.bits >> 8) & 0x01) != 0)
    }
    #[doc = "Bit 9 - Output Control"]
    #[inline(always)]
    pub fn outctl(&self) -> OUTCTL_R {
        OUTCTL_R::new(((self.bits >> 9) & 0x01) != 0)
    }
    #[doc = "Bit 10 - Simultaneous PHASEA and PHASEB Change Interrupt Enable"]
    #[inline(always)]
    pub fn sabie(&self) -> SABIE_R {
        SABIE_R::new(((self.bits >> 10) & 0x01) != 0)
    }
    #[doc = "Bit 11 - Simultaneous PHASEA and PHASEB Change Interrupt Request"]
    #[inline(always)]
    pub fn sabirq(&self) -> SABIRQ_R {
        SABIRQ_R::new(((self.bits >> 11) & 0x01) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - Update Hold Registers"]
    #[inline(always)]
    pub fn updhld(&mut self) -> UPDHLD_W {
        UPDHLD_W { w: self }
    }
    #[doc = "Bit 1 - Update Position Registers"]
    #[inline(always)]
    pub fn updpos(&mut self) -> UPDPOS_W {
        UPDPOS_W { w: self }
    }
    #[doc = "Bit 2 - Enable Modulo Counting"]
    #[inline(always)]
    pub fn mod_(&mut self) -> MOD_W {
        MOD_W { w: self }
    }
    #[doc = "Bit 4 - Roll-under Interrupt Enable"]
    #[inline(always)]
    pub fn ruie(&mut self) -> RUIE_W {
        RUIE_W { w: self }
    }
    #[doc = "Bit 5 - Roll-under Interrupt Request"]
    #[inline(always)]
    pub fn ruirq(&mut self) -> RUIRQ_W {
        RUIRQ_W { w: self }
    }
    #[doc = "Bit 6 - Roll-over Interrupt Enable"]
    #[inline(always)]
    pub fn roie(&mut self) -> ROIE_W {
        ROIE_W { w: self }
    }
    #[doc = "Bit 7 - Roll-over Interrupt Request"]
    #[inline(always)]
    pub fn roirq(&mut self) -> ROIRQ_W {
        ROIRQ_W { w: self }
    }
    #[doc = "Bit 8 - Revolution Counter Modulus Enable"]
    #[inline(always)]
    pub fn revmod(&mut self) -> REVMOD_W {
        REVMOD_W { w: self }
    }
    #[doc = "Bit 9 - Output Control"]
    #[inline(always)]
    pub fn outctl(&mut self) -> OUTCTL_W {
        OUTCTL_W { w: self }
    }
    #[doc = "Bit 10 - Simultaneous PHASEA and PHASEB Change Interrupt Enable"]
    #[inline(always)]
    pub fn sabie(&mut self) -> SABIE_W {
        SABIE_W { w: self }
    }
    #[doc = "Bit 11 - Simultaneous PHASEA and PHASEB Change Interrupt Request"]
    #[inline(always)]
    pub fn sabirq(&mut self) -> SABIRQ_W {
        SABIRQ_W { w: self }
    }
}