atsamd51j/rtc/mode2/
tampctrl.rs

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
#[doc = "Register `TAMPCTRL` reader"]
pub type R = crate::R<TampctrlSpec>;
#[doc = "Register `TAMPCTRL` writer"]
pub type W = crate::W<TampctrlSpec>;
#[doc = "Tamper Input 0 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum In0actselect {
    #[doc = "0: Off (Disabled)"]
    Off = 0,
    #[doc = "1: Wake without timestamp"]
    Wake = 1,
    #[doc = "2: Capture timestamp"]
    Capture = 2,
    #[doc = "3: Compare IN0 to OUT"]
    Actl = 3,
}
impl From<In0actselect> for u8 {
    #[inline(always)]
    fn from(variant: In0actselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for In0actselect {
    type Ux = u8;
}
impl crate::IsEnum for In0actselect {}
#[doc = "Field `IN0ACT` reader - Tamper Input 0 Action"]
pub type In0actR = crate::FieldReader<In0actselect>;
impl In0actR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> In0actselect {
        match self.bits {
            0 => In0actselect::Off,
            1 => In0actselect::Wake,
            2 => In0actselect::Capture,
            3 => In0actselect::Actl,
            _ => unreachable!(),
        }
    }
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == In0actselect::Off
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn is_wake(&self) -> bool {
        *self == In0actselect::Wake
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn is_capture(&self) -> bool {
        *self == In0actselect::Capture
    }
    #[doc = "Compare IN0 to OUT"]
    #[inline(always)]
    pub fn is_actl(&self) -> bool {
        *self == In0actselect::Actl
    }
}
#[doc = "Field `IN0ACT` writer - Tamper Input 0 Action"]
pub type In0actW<'a, REG> = crate::FieldWriter<'a, REG, 2, In0actselect, crate::Safe>;
impl<'a, REG> In0actW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(In0actselect::Off)
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn wake(self) -> &'a mut crate::W<REG> {
        self.variant(In0actselect::Wake)
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn capture(self) -> &'a mut crate::W<REG> {
        self.variant(In0actselect::Capture)
    }
    #[doc = "Compare IN0 to OUT"]
    #[inline(always)]
    pub fn actl(self) -> &'a mut crate::W<REG> {
        self.variant(In0actselect::Actl)
    }
}
#[doc = "Tamper Input 1 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum In1actselect {
    #[doc = "0: Off (Disabled)"]
    Off = 0,
    #[doc = "1: Wake without timestamp"]
    Wake = 1,
    #[doc = "2: Capture timestamp"]
    Capture = 2,
    #[doc = "3: Compare IN1 to OUT"]
    Actl = 3,
}
impl From<In1actselect> for u8 {
    #[inline(always)]
    fn from(variant: In1actselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for In1actselect {
    type Ux = u8;
}
impl crate::IsEnum for In1actselect {}
#[doc = "Field `IN1ACT` reader - Tamper Input 1 Action"]
pub type In1actR = crate::FieldReader<In1actselect>;
impl In1actR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> In1actselect {
        match self.bits {
            0 => In1actselect::Off,
            1 => In1actselect::Wake,
            2 => In1actselect::Capture,
            3 => In1actselect::Actl,
            _ => unreachable!(),
        }
    }
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == In1actselect::Off
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn is_wake(&self) -> bool {
        *self == In1actselect::Wake
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn is_capture(&self) -> bool {
        *self == In1actselect::Capture
    }
    #[doc = "Compare IN1 to OUT"]
    #[inline(always)]
    pub fn is_actl(&self) -> bool {
        *self == In1actselect::Actl
    }
}
#[doc = "Field `IN1ACT` writer - Tamper Input 1 Action"]
pub type In1actW<'a, REG> = crate::FieldWriter<'a, REG, 2, In1actselect, crate::Safe>;
impl<'a, REG> In1actW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(In1actselect::Off)
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn wake(self) -> &'a mut crate::W<REG> {
        self.variant(In1actselect::Wake)
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn capture(self) -> &'a mut crate::W<REG> {
        self.variant(In1actselect::Capture)
    }
    #[doc = "Compare IN1 to OUT"]
    #[inline(always)]
    pub fn actl(self) -> &'a mut crate::W<REG> {
        self.variant(In1actselect::Actl)
    }
}
#[doc = "Tamper Input 2 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum In2actselect {
    #[doc = "0: Off (Disabled)"]
    Off = 0,
    #[doc = "1: Wake without timestamp"]
    Wake = 1,
    #[doc = "2: Capture timestamp"]
    Capture = 2,
    #[doc = "3: Compare IN2 to OUT"]
    Actl = 3,
}
impl From<In2actselect> for u8 {
    #[inline(always)]
    fn from(variant: In2actselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for In2actselect {
    type Ux = u8;
}
impl crate::IsEnum for In2actselect {}
#[doc = "Field `IN2ACT` reader - Tamper Input 2 Action"]
pub type In2actR = crate::FieldReader<In2actselect>;
impl In2actR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> In2actselect {
        match self.bits {
            0 => In2actselect::Off,
            1 => In2actselect::Wake,
            2 => In2actselect::Capture,
            3 => In2actselect::Actl,
            _ => unreachable!(),
        }
    }
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == In2actselect::Off
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn is_wake(&self) -> bool {
        *self == In2actselect::Wake
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn is_capture(&self) -> bool {
        *self == In2actselect::Capture
    }
    #[doc = "Compare IN2 to OUT"]
    #[inline(always)]
    pub fn is_actl(&self) -> bool {
        *self == In2actselect::Actl
    }
}
#[doc = "Field `IN2ACT` writer - Tamper Input 2 Action"]
pub type In2actW<'a, REG> = crate::FieldWriter<'a, REG, 2, In2actselect, crate::Safe>;
impl<'a, REG> In2actW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(In2actselect::Off)
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn wake(self) -> &'a mut crate::W<REG> {
        self.variant(In2actselect::Wake)
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn capture(self) -> &'a mut crate::W<REG> {
        self.variant(In2actselect::Capture)
    }
    #[doc = "Compare IN2 to OUT"]
    #[inline(always)]
    pub fn actl(self) -> &'a mut crate::W<REG> {
        self.variant(In2actselect::Actl)
    }
}
#[doc = "Tamper Input 3 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum In3actselect {
    #[doc = "0: Off (Disabled)"]
    Off = 0,
    #[doc = "1: Wake without timestamp"]
    Wake = 1,
    #[doc = "2: Capture timestamp"]
    Capture = 2,
    #[doc = "3: Compare IN3 to OUT"]
    Actl = 3,
}
impl From<In3actselect> for u8 {
    #[inline(always)]
    fn from(variant: In3actselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for In3actselect {
    type Ux = u8;
}
impl crate::IsEnum for In3actselect {}
#[doc = "Field `IN3ACT` reader - Tamper Input 3 Action"]
pub type In3actR = crate::FieldReader<In3actselect>;
impl In3actR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> In3actselect {
        match self.bits {
            0 => In3actselect::Off,
            1 => In3actselect::Wake,
            2 => In3actselect::Capture,
            3 => In3actselect::Actl,
            _ => unreachable!(),
        }
    }
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == In3actselect::Off
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn is_wake(&self) -> bool {
        *self == In3actselect::Wake
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn is_capture(&self) -> bool {
        *self == In3actselect::Capture
    }
    #[doc = "Compare IN3 to OUT"]
    #[inline(always)]
    pub fn is_actl(&self) -> bool {
        *self == In3actselect::Actl
    }
}
#[doc = "Field `IN3ACT` writer - Tamper Input 3 Action"]
pub type In3actW<'a, REG> = crate::FieldWriter<'a, REG, 2, In3actselect, crate::Safe>;
impl<'a, REG> In3actW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(In3actselect::Off)
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn wake(self) -> &'a mut crate::W<REG> {
        self.variant(In3actselect::Wake)
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn capture(self) -> &'a mut crate::W<REG> {
        self.variant(In3actselect::Capture)
    }
    #[doc = "Compare IN3 to OUT"]
    #[inline(always)]
    pub fn actl(self) -> &'a mut crate::W<REG> {
        self.variant(In3actselect::Actl)
    }
}
#[doc = "Tamper Input 4 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum In4actselect {
    #[doc = "0: Off (Disabled)"]
    Off = 0,
    #[doc = "1: Wake without timestamp"]
    Wake = 1,
    #[doc = "2: Capture timestamp"]
    Capture = 2,
    #[doc = "3: Compare IN4 to OUT"]
    Actl = 3,
}
impl From<In4actselect> for u8 {
    #[inline(always)]
    fn from(variant: In4actselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for In4actselect {
    type Ux = u8;
}
impl crate::IsEnum for In4actselect {}
#[doc = "Field `IN4ACT` reader - Tamper Input 4 Action"]
pub type In4actR = crate::FieldReader<In4actselect>;
impl In4actR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> In4actselect {
        match self.bits {
            0 => In4actselect::Off,
            1 => In4actselect::Wake,
            2 => In4actselect::Capture,
            3 => In4actselect::Actl,
            _ => unreachable!(),
        }
    }
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == In4actselect::Off
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn is_wake(&self) -> bool {
        *self == In4actselect::Wake
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn is_capture(&self) -> bool {
        *self == In4actselect::Capture
    }
    #[doc = "Compare IN4 to OUT"]
    #[inline(always)]
    pub fn is_actl(&self) -> bool {
        *self == In4actselect::Actl
    }
}
#[doc = "Field `IN4ACT` writer - Tamper Input 4 Action"]
pub type In4actW<'a, REG> = crate::FieldWriter<'a, REG, 2, In4actselect, crate::Safe>;
impl<'a, REG> In4actW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Off (Disabled)"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(In4actselect::Off)
    }
    #[doc = "Wake without timestamp"]
    #[inline(always)]
    pub fn wake(self) -> &'a mut crate::W<REG> {
        self.variant(In4actselect::Wake)
    }
    #[doc = "Capture timestamp"]
    #[inline(always)]
    pub fn capture(self) -> &'a mut crate::W<REG> {
        self.variant(In4actselect::Capture)
    }
    #[doc = "Compare IN4 to OUT"]
    #[inline(always)]
    pub fn actl(self) -> &'a mut crate::W<REG> {
        self.variant(In4actselect::Actl)
    }
}
#[doc = "Field `TAMLVL0` reader - Tamper Level Select 0"]
pub type Tamlvl0R = crate::BitReader;
#[doc = "Field `TAMLVL0` writer - Tamper Level Select 0"]
pub type Tamlvl0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TAMLVL1` reader - Tamper Level Select 1"]
pub type Tamlvl1R = crate::BitReader;
#[doc = "Field `TAMLVL1` writer - Tamper Level Select 1"]
pub type Tamlvl1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TAMLVL2` reader - Tamper Level Select 2"]
pub type Tamlvl2R = crate::BitReader;
#[doc = "Field `TAMLVL2` writer - Tamper Level Select 2"]
pub type Tamlvl2W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TAMLVL3` reader - Tamper Level Select 3"]
pub type Tamlvl3R = crate::BitReader;
#[doc = "Field `TAMLVL3` writer - Tamper Level Select 3"]
pub type Tamlvl3W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `TAMLVL4` reader - Tamper Level Select 4"]
pub type Tamlvl4R = crate::BitReader;
#[doc = "Field `TAMLVL4` writer - Tamper Level Select 4"]
pub type Tamlvl4W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DEBNC0` reader - Debouncer Enable 0"]
pub type Debnc0R = crate::BitReader;
#[doc = "Field `DEBNC0` writer - Debouncer Enable 0"]
pub type Debnc0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DEBNC1` reader - Debouncer Enable 1"]
pub type Debnc1R = crate::BitReader;
#[doc = "Field `DEBNC1` writer - Debouncer Enable 1"]
pub type Debnc1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DEBNC2` reader - Debouncer Enable 2"]
pub type Debnc2R = crate::BitReader;
#[doc = "Field `DEBNC2` writer - Debouncer Enable 2"]
pub type Debnc2W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DEBNC3` reader - Debouncer Enable 3"]
pub type Debnc3R = crate::BitReader;
#[doc = "Field `DEBNC3` writer - Debouncer Enable 3"]
pub type Debnc3W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `DEBNC4` reader - Debouncer Enable 4"]
pub type Debnc4R = crate::BitReader;
#[doc = "Field `DEBNC4` writer - Debouncer Enable 4"]
pub type Debnc4W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bits 0:1 - Tamper Input 0 Action"]
    #[inline(always)]
    pub fn in0act(&self) -> In0actR {
        In0actR::new((self.bits & 3) as u8)
    }
    #[doc = "Bits 2:3 - Tamper Input 1 Action"]
    #[inline(always)]
    pub fn in1act(&self) -> In1actR {
        In1actR::new(((self.bits >> 2) & 3) as u8)
    }
    #[doc = "Bits 4:5 - Tamper Input 2 Action"]
    #[inline(always)]
    pub fn in2act(&self) -> In2actR {
        In2actR::new(((self.bits >> 4) & 3) as u8)
    }
    #[doc = "Bits 6:7 - Tamper Input 3 Action"]
    #[inline(always)]
    pub fn in3act(&self) -> In3actR {
        In3actR::new(((self.bits >> 6) & 3) as u8)
    }
    #[doc = "Bits 8:9 - Tamper Input 4 Action"]
    #[inline(always)]
    pub fn in4act(&self) -> In4actR {
        In4actR::new(((self.bits >> 8) & 3) as u8)
    }
    #[doc = "Bit 16 - Tamper Level Select 0"]
    #[inline(always)]
    pub fn tamlvl0(&self) -> Tamlvl0R {
        Tamlvl0R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - Tamper Level Select 1"]
    #[inline(always)]
    pub fn tamlvl1(&self) -> Tamlvl1R {
        Tamlvl1R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - Tamper Level Select 2"]
    #[inline(always)]
    pub fn tamlvl2(&self) -> Tamlvl2R {
        Tamlvl2R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - Tamper Level Select 3"]
    #[inline(always)]
    pub fn tamlvl3(&self) -> Tamlvl3R {
        Tamlvl3R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 20 - Tamper Level Select 4"]
    #[inline(always)]
    pub fn tamlvl4(&self) -> Tamlvl4R {
        Tamlvl4R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 24 - Debouncer Enable 0"]
    #[inline(always)]
    pub fn debnc0(&self) -> Debnc0R {
        Debnc0R::new(((self.bits >> 24) & 1) != 0)
    }
    #[doc = "Bit 25 - Debouncer Enable 1"]
    #[inline(always)]
    pub fn debnc1(&self) -> Debnc1R {
        Debnc1R::new(((self.bits >> 25) & 1) != 0)
    }
    #[doc = "Bit 26 - Debouncer Enable 2"]
    #[inline(always)]
    pub fn debnc2(&self) -> Debnc2R {
        Debnc2R::new(((self.bits >> 26) & 1) != 0)
    }
    #[doc = "Bit 27 - Debouncer Enable 3"]
    #[inline(always)]
    pub fn debnc3(&self) -> Debnc3R {
        Debnc3R::new(((self.bits >> 27) & 1) != 0)
    }
    #[doc = "Bit 28 - Debouncer Enable 4"]
    #[inline(always)]
    pub fn debnc4(&self) -> Debnc4R {
        Debnc4R::new(((self.bits >> 28) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:1 - Tamper Input 0 Action"]
    #[inline(always)]
    #[must_use]
    pub fn in0act(&mut self) -> In0actW<TampctrlSpec> {
        In0actW::new(self, 0)
    }
    #[doc = "Bits 2:3 - Tamper Input 1 Action"]
    #[inline(always)]
    #[must_use]
    pub fn in1act(&mut self) -> In1actW<TampctrlSpec> {
        In1actW::new(self, 2)
    }
    #[doc = "Bits 4:5 - Tamper Input 2 Action"]
    #[inline(always)]
    #[must_use]
    pub fn in2act(&mut self) -> In2actW<TampctrlSpec> {
        In2actW::new(self, 4)
    }
    #[doc = "Bits 6:7 - Tamper Input 3 Action"]
    #[inline(always)]
    #[must_use]
    pub fn in3act(&mut self) -> In3actW<TampctrlSpec> {
        In3actW::new(self, 6)
    }
    #[doc = "Bits 8:9 - Tamper Input 4 Action"]
    #[inline(always)]
    #[must_use]
    pub fn in4act(&mut self) -> In4actW<TampctrlSpec> {
        In4actW::new(self, 8)
    }
    #[doc = "Bit 16 - Tamper Level Select 0"]
    #[inline(always)]
    #[must_use]
    pub fn tamlvl0(&mut self) -> Tamlvl0W<TampctrlSpec> {
        Tamlvl0W::new(self, 16)
    }
    #[doc = "Bit 17 - Tamper Level Select 1"]
    #[inline(always)]
    #[must_use]
    pub fn tamlvl1(&mut self) -> Tamlvl1W<TampctrlSpec> {
        Tamlvl1W::new(self, 17)
    }
    #[doc = "Bit 18 - Tamper Level Select 2"]
    #[inline(always)]
    #[must_use]
    pub fn tamlvl2(&mut self) -> Tamlvl2W<TampctrlSpec> {
        Tamlvl2W::new(self, 18)
    }
    #[doc = "Bit 19 - Tamper Level Select 3"]
    #[inline(always)]
    #[must_use]
    pub fn tamlvl3(&mut self) -> Tamlvl3W<TampctrlSpec> {
        Tamlvl3W::new(self, 19)
    }
    #[doc = "Bit 20 - Tamper Level Select 4"]
    #[inline(always)]
    #[must_use]
    pub fn tamlvl4(&mut self) -> Tamlvl4W<TampctrlSpec> {
        Tamlvl4W::new(self, 20)
    }
    #[doc = "Bit 24 - Debouncer Enable 0"]
    #[inline(always)]
    #[must_use]
    pub fn debnc0(&mut self) -> Debnc0W<TampctrlSpec> {
        Debnc0W::new(self, 24)
    }
    #[doc = "Bit 25 - Debouncer Enable 1"]
    #[inline(always)]
    #[must_use]
    pub fn debnc1(&mut self) -> Debnc1W<TampctrlSpec> {
        Debnc1W::new(self, 25)
    }
    #[doc = "Bit 26 - Debouncer Enable 2"]
    #[inline(always)]
    #[must_use]
    pub fn debnc2(&mut self) -> Debnc2W<TampctrlSpec> {
        Debnc2W::new(self, 26)
    }
    #[doc = "Bit 27 - Debouncer Enable 3"]
    #[inline(always)]
    #[must_use]
    pub fn debnc3(&mut self) -> Debnc3W<TampctrlSpec> {
        Debnc3W::new(self, 27)
    }
    #[doc = "Bit 28 - Debouncer Enable 4"]
    #[inline(always)]
    #[must_use]
    pub fn debnc4(&mut self) -> Debnc4W<TampctrlSpec> {
        Debnc4W::new(self, 28)
    }
}
#[doc = "Tamper Control\n\nYou can [`read`](crate::Reg::read) this register and get [`tampctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tampctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct TampctrlSpec;
impl crate::RegisterSpec for TampctrlSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`tampctrl::R`](R) reader structure"]
impl crate::Readable for TampctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`tampctrl::W`](W) writer structure"]
impl crate::Writable for TampctrlSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets TAMPCTRL to value 0"]
impl crate::Resettable for TampctrlSpec {
    const RESET_VALUE: u32 = 0;
}