atsamd51p/adc0/
inputctrl.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
#[doc = "Register `INPUTCTRL` reader"]
pub type R = crate::R<InputctrlSpec>;
#[doc = "Register `INPUTCTRL` writer"]
pub type W = crate::W<InputctrlSpec>;
#[doc = "Positive Mux Input Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Muxposselect {
    #[doc = "0: ADC AIN0 Pin"]
    Ain0 = 0,
    #[doc = "1: ADC AIN1 Pin"]
    Ain1 = 1,
    #[doc = "2: ADC AIN2 Pin"]
    Ain2 = 2,
    #[doc = "3: ADC AIN3 Pin"]
    Ain3 = 3,
    #[doc = "4: ADC AIN4 Pin"]
    Ain4 = 4,
    #[doc = "5: ADC AIN5 Pin"]
    Ain5 = 5,
    #[doc = "6: ADC AIN6 Pin"]
    Ain6 = 6,
    #[doc = "7: ADC AIN7 Pin"]
    Ain7 = 7,
    #[doc = "8: ADC AIN8 Pin"]
    Ain8 = 8,
    #[doc = "9: ADC AIN9 Pin"]
    Ain9 = 9,
    #[doc = "10: ADC AIN10 Pin"]
    Ain10 = 10,
    #[doc = "11: ADC AIN11 Pin"]
    Ain11 = 11,
    #[doc = "12: ADC AIN12 Pin"]
    Ain12 = 12,
    #[doc = "13: ADC AIN13 Pin"]
    Ain13 = 13,
    #[doc = "14: ADC AIN14 Pin"]
    Ain14 = 14,
    #[doc = "15: ADC AIN15 Pin"]
    Ain15 = 15,
    #[doc = "24: 1/4 Scaled Core Supply"]
    Scaledcorevcc = 24,
    #[doc = "25: 1/4 Scaled VBAT Supply"]
    Scaledvbat = 25,
    #[doc = "26: 1/4 Scaled I/O Supply"]
    Scalediovcc = 26,
    #[doc = "27: Bandgap Voltage"]
    Bandgap = 27,
    #[doc = "28: Temperature Sensor TSENSP"]
    Ptat = 28,
    #[doc = "29: Temperature Sensor TSENSC"]
    Ctat = 29,
    #[doc = "30: DAC Output"]
    Dac = 30,
    #[doc = "31: PTC output (only on ADC0)"]
    Ptc = 31,
}
impl From<Muxposselect> for u8 {
    #[inline(always)]
    fn from(variant: Muxposselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Muxposselect {
    type Ux = u8;
}
impl crate::IsEnum for Muxposselect {}
#[doc = "Field `MUXPOS` reader - Positive Mux Input Selection"]
pub type MuxposR = crate::FieldReader<Muxposselect>;
impl MuxposR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Muxposselect> {
        match self.bits {
            0 => Some(Muxposselect::Ain0),
            1 => Some(Muxposselect::Ain1),
            2 => Some(Muxposselect::Ain2),
            3 => Some(Muxposselect::Ain3),
            4 => Some(Muxposselect::Ain4),
            5 => Some(Muxposselect::Ain5),
            6 => Some(Muxposselect::Ain6),
            7 => Some(Muxposselect::Ain7),
            8 => Some(Muxposselect::Ain8),
            9 => Some(Muxposselect::Ain9),
            10 => Some(Muxposselect::Ain10),
            11 => Some(Muxposselect::Ain11),
            12 => Some(Muxposselect::Ain12),
            13 => Some(Muxposselect::Ain13),
            14 => Some(Muxposselect::Ain14),
            15 => Some(Muxposselect::Ain15),
            24 => Some(Muxposselect::Scaledcorevcc),
            25 => Some(Muxposselect::Scaledvbat),
            26 => Some(Muxposselect::Scalediovcc),
            27 => Some(Muxposselect::Bandgap),
            28 => Some(Muxposselect::Ptat),
            29 => Some(Muxposselect::Ctat),
            30 => Some(Muxposselect::Dac),
            31 => Some(Muxposselect::Ptc),
            _ => None,
        }
    }
    #[doc = "ADC AIN0 Pin"]
    #[inline(always)]
    pub fn is_ain0(&self) -> bool {
        *self == Muxposselect::Ain0
    }
    #[doc = "ADC AIN1 Pin"]
    #[inline(always)]
    pub fn is_ain1(&self) -> bool {
        *self == Muxposselect::Ain1
    }
    #[doc = "ADC AIN2 Pin"]
    #[inline(always)]
    pub fn is_ain2(&self) -> bool {
        *self == Muxposselect::Ain2
    }
    #[doc = "ADC AIN3 Pin"]
    #[inline(always)]
    pub fn is_ain3(&self) -> bool {
        *self == Muxposselect::Ain3
    }
    #[doc = "ADC AIN4 Pin"]
    #[inline(always)]
    pub fn is_ain4(&self) -> bool {
        *self == Muxposselect::Ain4
    }
    #[doc = "ADC AIN5 Pin"]
    #[inline(always)]
    pub fn is_ain5(&self) -> bool {
        *self == Muxposselect::Ain5
    }
    #[doc = "ADC AIN6 Pin"]
    #[inline(always)]
    pub fn is_ain6(&self) -> bool {
        *self == Muxposselect::Ain6
    }
    #[doc = "ADC AIN7 Pin"]
    #[inline(always)]
    pub fn is_ain7(&self) -> bool {
        *self == Muxposselect::Ain7
    }
    #[doc = "ADC AIN8 Pin"]
    #[inline(always)]
    pub fn is_ain8(&self) -> bool {
        *self == Muxposselect::Ain8
    }
    #[doc = "ADC AIN9 Pin"]
    #[inline(always)]
    pub fn is_ain9(&self) -> bool {
        *self == Muxposselect::Ain9
    }
    #[doc = "ADC AIN10 Pin"]
    #[inline(always)]
    pub fn is_ain10(&self) -> bool {
        *self == Muxposselect::Ain10
    }
    #[doc = "ADC AIN11 Pin"]
    #[inline(always)]
    pub fn is_ain11(&self) -> bool {
        *self == Muxposselect::Ain11
    }
    #[doc = "ADC AIN12 Pin"]
    #[inline(always)]
    pub fn is_ain12(&self) -> bool {
        *self == Muxposselect::Ain12
    }
    #[doc = "ADC AIN13 Pin"]
    #[inline(always)]
    pub fn is_ain13(&self) -> bool {
        *self == Muxposselect::Ain13
    }
    #[doc = "ADC AIN14 Pin"]
    #[inline(always)]
    pub fn is_ain14(&self) -> bool {
        *self == Muxposselect::Ain14
    }
    #[doc = "ADC AIN15 Pin"]
    #[inline(always)]
    pub fn is_ain15(&self) -> bool {
        *self == Muxposselect::Ain15
    }
    #[doc = "1/4 Scaled Core Supply"]
    #[inline(always)]
    pub fn is_scaledcorevcc(&self) -> bool {
        *self == Muxposselect::Scaledcorevcc
    }
    #[doc = "1/4 Scaled VBAT Supply"]
    #[inline(always)]
    pub fn is_scaledvbat(&self) -> bool {
        *self == Muxposselect::Scaledvbat
    }
    #[doc = "1/4 Scaled I/O Supply"]
    #[inline(always)]
    pub fn is_scalediovcc(&self) -> bool {
        *self == Muxposselect::Scalediovcc
    }
    #[doc = "Bandgap Voltage"]
    #[inline(always)]
    pub fn is_bandgap(&self) -> bool {
        *self == Muxposselect::Bandgap
    }
    #[doc = "Temperature Sensor TSENSP"]
    #[inline(always)]
    pub fn is_ptat(&self) -> bool {
        *self == Muxposselect::Ptat
    }
    #[doc = "Temperature Sensor TSENSC"]
    #[inline(always)]
    pub fn is_ctat(&self) -> bool {
        *self == Muxposselect::Ctat
    }
    #[doc = "DAC Output"]
    #[inline(always)]
    pub fn is_dac(&self) -> bool {
        *self == Muxposselect::Dac
    }
    #[doc = "PTC output (only on ADC0)"]
    #[inline(always)]
    pub fn is_ptc(&self) -> bool {
        *self == Muxposselect::Ptc
    }
}
#[doc = "Field `MUXPOS` writer - Positive Mux Input Selection"]
pub type MuxposW<'a, REG> = crate::FieldWriter<'a, REG, 5, Muxposselect>;
impl<'a, REG> MuxposW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "ADC AIN0 Pin"]
    #[inline(always)]
    pub fn ain0(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain0)
    }
    #[doc = "ADC AIN1 Pin"]
    #[inline(always)]
    pub fn ain1(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain1)
    }
    #[doc = "ADC AIN2 Pin"]
    #[inline(always)]
    pub fn ain2(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain2)
    }
    #[doc = "ADC AIN3 Pin"]
    #[inline(always)]
    pub fn ain3(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain3)
    }
    #[doc = "ADC AIN4 Pin"]
    #[inline(always)]
    pub fn ain4(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain4)
    }
    #[doc = "ADC AIN5 Pin"]
    #[inline(always)]
    pub fn ain5(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain5)
    }
    #[doc = "ADC AIN6 Pin"]
    #[inline(always)]
    pub fn ain6(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain6)
    }
    #[doc = "ADC AIN7 Pin"]
    #[inline(always)]
    pub fn ain7(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain7)
    }
    #[doc = "ADC AIN8 Pin"]
    #[inline(always)]
    pub fn ain8(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain8)
    }
    #[doc = "ADC AIN9 Pin"]
    #[inline(always)]
    pub fn ain9(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain9)
    }
    #[doc = "ADC AIN10 Pin"]
    #[inline(always)]
    pub fn ain10(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain10)
    }
    #[doc = "ADC AIN11 Pin"]
    #[inline(always)]
    pub fn ain11(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain11)
    }
    #[doc = "ADC AIN12 Pin"]
    #[inline(always)]
    pub fn ain12(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain12)
    }
    #[doc = "ADC AIN13 Pin"]
    #[inline(always)]
    pub fn ain13(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain13)
    }
    #[doc = "ADC AIN14 Pin"]
    #[inline(always)]
    pub fn ain14(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain14)
    }
    #[doc = "ADC AIN15 Pin"]
    #[inline(always)]
    pub fn ain15(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ain15)
    }
    #[doc = "1/4 Scaled Core Supply"]
    #[inline(always)]
    pub fn scaledcorevcc(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Scaledcorevcc)
    }
    #[doc = "1/4 Scaled VBAT Supply"]
    #[inline(always)]
    pub fn scaledvbat(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Scaledvbat)
    }
    #[doc = "1/4 Scaled I/O Supply"]
    #[inline(always)]
    pub fn scalediovcc(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Scalediovcc)
    }
    #[doc = "Bandgap Voltage"]
    #[inline(always)]
    pub fn bandgap(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Bandgap)
    }
    #[doc = "Temperature Sensor TSENSP"]
    #[inline(always)]
    pub fn ptat(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ptat)
    }
    #[doc = "Temperature Sensor TSENSC"]
    #[inline(always)]
    pub fn ctat(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ctat)
    }
    #[doc = "DAC Output"]
    #[inline(always)]
    pub fn dac(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Dac)
    }
    #[doc = "PTC output (only on ADC0)"]
    #[inline(always)]
    pub fn ptc(self) -> &'a mut crate::W<REG> {
        self.variant(Muxposselect::Ptc)
    }
}
#[doc = "Field `DIFFMODE` reader - Differential Mode"]
pub type DiffmodeR = crate::BitReader;
#[doc = "Field `DIFFMODE` writer - Differential Mode"]
pub type DiffmodeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Negative Mux Input Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Muxnegselect {
    #[doc = "0: ADC AIN0 Pin"]
    Ain0 = 0,
    #[doc = "1: ADC AIN1 Pin"]
    Ain1 = 1,
    #[doc = "2: ADC AIN2 Pin"]
    Ain2 = 2,
    #[doc = "3: ADC AIN3 Pin"]
    Ain3 = 3,
    #[doc = "4: ADC AIN4 Pin"]
    Ain4 = 4,
    #[doc = "5: ADC AIN5 Pin"]
    Ain5 = 5,
    #[doc = "6: ADC AIN6 Pin"]
    Ain6 = 6,
    #[doc = "7: ADC AIN7 Pin"]
    Ain7 = 7,
    #[doc = "24: Internal Ground"]
    Gnd = 24,
}
impl From<Muxnegselect> for u8 {
    #[inline(always)]
    fn from(variant: Muxnegselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Muxnegselect {
    type Ux = u8;
}
impl crate::IsEnum for Muxnegselect {}
#[doc = "Field `MUXNEG` reader - Negative Mux Input Selection"]
pub type MuxnegR = crate::FieldReader<Muxnegselect>;
impl MuxnegR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Muxnegselect> {
        match self.bits {
            0 => Some(Muxnegselect::Ain0),
            1 => Some(Muxnegselect::Ain1),
            2 => Some(Muxnegselect::Ain2),
            3 => Some(Muxnegselect::Ain3),
            4 => Some(Muxnegselect::Ain4),
            5 => Some(Muxnegselect::Ain5),
            6 => Some(Muxnegselect::Ain6),
            7 => Some(Muxnegselect::Ain7),
            24 => Some(Muxnegselect::Gnd),
            _ => None,
        }
    }
    #[doc = "ADC AIN0 Pin"]
    #[inline(always)]
    pub fn is_ain0(&self) -> bool {
        *self == Muxnegselect::Ain0
    }
    #[doc = "ADC AIN1 Pin"]
    #[inline(always)]
    pub fn is_ain1(&self) -> bool {
        *self == Muxnegselect::Ain1
    }
    #[doc = "ADC AIN2 Pin"]
    #[inline(always)]
    pub fn is_ain2(&self) -> bool {
        *self == Muxnegselect::Ain2
    }
    #[doc = "ADC AIN3 Pin"]
    #[inline(always)]
    pub fn is_ain3(&self) -> bool {
        *self == Muxnegselect::Ain3
    }
    #[doc = "ADC AIN4 Pin"]
    #[inline(always)]
    pub fn is_ain4(&self) -> bool {
        *self == Muxnegselect::Ain4
    }
    #[doc = "ADC AIN5 Pin"]
    #[inline(always)]
    pub fn is_ain5(&self) -> bool {
        *self == Muxnegselect::Ain5
    }
    #[doc = "ADC AIN6 Pin"]
    #[inline(always)]
    pub fn is_ain6(&self) -> bool {
        *self == Muxnegselect::Ain6
    }
    #[doc = "ADC AIN7 Pin"]
    #[inline(always)]
    pub fn is_ain7(&self) -> bool {
        *self == Muxnegselect::Ain7
    }
    #[doc = "Internal Ground"]
    #[inline(always)]
    pub fn is_gnd(&self) -> bool {
        *self == Muxnegselect::Gnd
    }
}
#[doc = "Field `MUXNEG` writer - Negative Mux Input Selection"]
pub type MuxnegW<'a, REG> = crate::FieldWriter<'a, REG, 5, Muxnegselect>;
impl<'a, REG> MuxnegW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "ADC AIN0 Pin"]
    #[inline(always)]
    pub fn ain0(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain0)
    }
    #[doc = "ADC AIN1 Pin"]
    #[inline(always)]
    pub fn ain1(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain1)
    }
    #[doc = "ADC AIN2 Pin"]
    #[inline(always)]
    pub fn ain2(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain2)
    }
    #[doc = "ADC AIN3 Pin"]
    #[inline(always)]
    pub fn ain3(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain3)
    }
    #[doc = "ADC AIN4 Pin"]
    #[inline(always)]
    pub fn ain4(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain4)
    }
    #[doc = "ADC AIN5 Pin"]
    #[inline(always)]
    pub fn ain5(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain5)
    }
    #[doc = "ADC AIN6 Pin"]
    #[inline(always)]
    pub fn ain6(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain6)
    }
    #[doc = "ADC AIN7 Pin"]
    #[inline(always)]
    pub fn ain7(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Ain7)
    }
    #[doc = "Internal Ground"]
    #[inline(always)]
    pub fn gnd(self) -> &'a mut crate::W<REG> {
        self.variant(Muxnegselect::Gnd)
    }
}
#[doc = "Field `DSEQSTOP` reader - Stop DMA Sequencing"]
pub type DseqstopR = crate::BitReader;
#[doc = "Field `DSEQSTOP` writer - Stop DMA Sequencing"]
pub type DseqstopW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bits 0:4 - Positive Mux Input Selection"]
    #[inline(always)]
    pub fn muxpos(&self) -> MuxposR {
        MuxposR::new((self.bits & 0x1f) as u8)
    }
    #[doc = "Bit 7 - Differential Mode"]
    #[inline(always)]
    pub fn diffmode(&self) -> DiffmodeR {
        DiffmodeR::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bits 8:12 - Negative Mux Input Selection"]
    #[inline(always)]
    pub fn muxneg(&self) -> MuxnegR {
        MuxnegR::new(((self.bits >> 8) & 0x1f) as u8)
    }
    #[doc = "Bit 15 - Stop DMA Sequencing"]
    #[inline(always)]
    pub fn dseqstop(&self) -> DseqstopR {
        DseqstopR::new(((self.bits >> 15) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:4 - Positive Mux Input Selection"]
    #[inline(always)]
    #[must_use]
    pub fn muxpos(&mut self) -> MuxposW<InputctrlSpec> {
        MuxposW::new(self, 0)
    }
    #[doc = "Bit 7 - Differential Mode"]
    #[inline(always)]
    #[must_use]
    pub fn diffmode(&mut self) -> DiffmodeW<InputctrlSpec> {
        DiffmodeW::new(self, 7)
    }
    #[doc = "Bits 8:12 - Negative Mux Input Selection"]
    #[inline(always)]
    #[must_use]
    pub fn muxneg(&mut self) -> MuxnegW<InputctrlSpec> {
        MuxnegW::new(self, 8)
    }
    #[doc = "Bit 15 - Stop DMA Sequencing"]
    #[inline(always)]
    #[must_use]
    pub fn dseqstop(&mut self) -> DseqstopW<InputctrlSpec> {
        DseqstopW::new(self, 15)
    }
}
#[doc = "Input Control\n\nYou can [`read`](crate::Reg::read) this register and get [`inputctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`inputctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct InputctrlSpec;
impl crate::RegisterSpec for InputctrlSpec {
    type Ux = u16;
}
#[doc = "`read()` method returns [`inputctrl::R`](R) reader structure"]
impl crate::Readable for InputctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`inputctrl::W`](W) writer structure"]
impl crate::Writable for InputctrlSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0;
}
#[doc = "`reset()` method sets INPUTCTRL to value 0"]
impl crate::Resettable for InputctrlSpec {
    const RESET_VALUE: u16 = 0;
}