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
#[doc = "Register `CLKCTRL[%s]` reader"]
pub type R = crate::R<CLKCTRL_SPEC>;
#[doc = "Register `CLKCTRL[%s]` writer"]
pub type W = crate::W<CLKCTRL_SPEC>;
#[doc = "Field `SLOTSIZE` reader - Slot Size"]
pub type SLOTSIZE_R = crate::FieldReader<SLOTSIZESELECT_A>;
#[doc = "Slot Size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum SLOTSIZESELECT_A {
    #[doc = "0: 8-bit Slot for Clock Unit n"]
    _8 = 0,
    #[doc = "1: 16-bit Slot for Clock Unit n"]
    _16 = 1,
    #[doc = "2: 24-bit Slot for Clock Unit n"]
    _24 = 2,
    #[doc = "3: 32-bit Slot for Clock Unit n"]
    _32 = 3,
}
impl From<SLOTSIZESELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: SLOTSIZESELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for SLOTSIZESELECT_A {
    type Ux = u8;
}
impl SLOTSIZE_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> SLOTSIZESELECT_A {
        match self.bits {
            0 => SLOTSIZESELECT_A::_8,
            1 => SLOTSIZESELECT_A::_16,
            2 => SLOTSIZESELECT_A::_24,
            3 => SLOTSIZESELECT_A::_32,
            _ => unreachable!(),
        }
    }
    #[doc = "8-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn is_8(&self) -> bool {
        *self == SLOTSIZESELECT_A::_8
    }
    #[doc = "16-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn is_16(&self) -> bool {
        *self == SLOTSIZESELECT_A::_16
    }
    #[doc = "24-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn is_24(&self) -> bool {
        *self == SLOTSIZESELECT_A::_24
    }
    #[doc = "32-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn is_32(&self) -> bool {
        *self == SLOTSIZESELECT_A::_32
    }
}
#[doc = "Field `SLOTSIZE` writer - Slot Size"]
pub type SLOTSIZE_W<'a, REG, const O: u8> = crate::FieldWriterSafe<'a, REG, 2, O, SLOTSIZESELECT_A>;
impl<'a, REG, const O: u8> SLOTSIZE_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "8-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn _8(self) -> &'a mut crate::W<REG> {
        self.variant(SLOTSIZESELECT_A::_8)
    }
    #[doc = "16-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn _16(self) -> &'a mut crate::W<REG> {
        self.variant(SLOTSIZESELECT_A::_16)
    }
    #[doc = "24-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn _24(self) -> &'a mut crate::W<REG> {
        self.variant(SLOTSIZESELECT_A::_24)
    }
    #[doc = "32-bit Slot for Clock Unit n"]
    #[inline(always)]
    pub fn _32(self) -> &'a mut crate::W<REG> {
        self.variant(SLOTSIZESELECT_A::_32)
    }
}
#[doc = "Field `NBSLOTS` reader - Number of Slots in Frame"]
pub type NBSLOTS_R = crate::FieldReader;
#[doc = "Field `NBSLOTS` writer - Number of Slots in Frame"]
pub type NBSLOTS_W<'a, REG, const O: u8> = crate::FieldWriter<'a, REG, 3, O>;
#[doc = "Field `FSWIDTH` reader - Frame Sync Width"]
pub type FSWIDTH_R = crate::FieldReader<FSWIDTHSELECT_A>;
#[doc = "Frame Sync Width\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum FSWIDTHSELECT_A {
    #[doc = "0: Frame Sync Pulse is 1 Slot wide (default for I2S protocol)"]
    SLOT = 0,
    #[doc = "1: Frame Sync Pulse is half a Frame wide"]
    HALF = 1,
    #[doc = "2: Frame Sync Pulse is 1 Bit wide"]
    BIT = 2,
    #[doc = "3: Clock Unit n operates in Burst mode, with a 1-bit wide Frame Sync pulse per Data sample, only when Data transfer is requested"]
    BURST = 3,
}
impl From<FSWIDTHSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: FSWIDTHSELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for FSWIDTHSELECT_A {
    type Ux = u8;
}
impl FSWIDTH_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> FSWIDTHSELECT_A {
        match self.bits {
            0 => FSWIDTHSELECT_A::SLOT,
            1 => FSWIDTHSELECT_A::HALF,
            2 => FSWIDTHSELECT_A::BIT,
            3 => FSWIDTHSELECT_A::BURST,
            _ => unreachable!(),
        }
    }
    #[doc = "Frame Sync Pulse is 1 Slot wide (default for I2S protocol)"]
    #[inline(always)]
    pub fn is_slot(&self) -> bool {
        *self == FSWIDTHSELECT_A::SLOT
    }
    #[doc = "Frame Sync Pulse is half a Frame wide"]
    #[inline(always)]
    pub fn is_half(&self) -> bool {
        *self == FSWIDTHSELECT_A::HALF
    }
    #[doc = "Frame Sync Pulse is 1 Bit wide"]
    #[inline(always)]
    pub fn is_bit_(&self) -> bool {
        *self == FSWIDTHSELECT_A::BIT
    }
    #[doc = "Clock Unit n operates in Burst mode, with a 1-bit wide Frame Sync pulse per Data sample, only when Data transfer is requested"]
    #[inline(always)]
    pub fn is_burst(&self) -> bool {
        *self == FSWIDTHSELECT_A::BURST
    }
}
#[doc = "Field `FSWIDTH` writer - Frame Sync Width"]
pub type FSWIDTH_W<'a, REG, const O: u8> = crate::FieldWriterSafe<'a, REG, 2, O, FSWIDTHSELECT_A>;
impl<'a, REG, const O: u8> FSWIDTH_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Frame Sync Pulse is 1 Slot wide (default for I2S protocol)"]
    #[inline(always)]
    pub fn slot(self) -> &'a mut crate::W<REG> {
        self.variant(FSWIDTHSELECT_A::SLOT)
    }
    #[doc = "Frame Sync Pulse is half a Frame wide"]
    #[inline(always)]
    pub fn half(self) -> &'a mut crate::W<REG> {
        self.variant(FSWIDTHSELECT_A::HALF)
    }
    #[doc = "Frame Sync Pulse is 1 Bit wide"]
    #[inline(always)]
    pub fn bit_(self) -> &'a mut crate::W<REG> {
        self.variant(FSWIDTHSELECT_A::BIT)
    }
    #[doc = "Clock Unit n operates in Burst mode, with a 1-bit wide Frame Sync pulse per Data sample, only when Data transfer is requested"]
    #[inline(always)]
    pub fn burst(self) -> &'a mut crate::W<REG> {
        self.variant(FSWIDTHSELECT_A::BURST)
    }
}
#[doc = "Field `BITDELAY` reader - Data Delay from Frame Sync"]
pub type BITDELAY_R = crate::BitReader<BITDELAYSELECT_A>;
#[doc = "Data Delay from Frame Sync\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum BITDELAYSELECT_A {
    #[doc = "0: Left Justified (0 Bit Delay)"]
    LJ = 0,
    #[doc = "1: I2S (1 Bit Delay)"]
    I2S = 1,
}
impl From<BITDELAYSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: BITDELAYSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl BITDELAY_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> BITDELAYSELECT_A {
        match self.bits {
            false => BITDELAYSELECT_A::LJ,
            true => BITDELAYSELECT_A::I2S,
        }
    }
    #[doc = "Left Justified (0 Bit Delay)"]
    #[inline(always)]
    pub fn is_lj(&self) -> bool {
        *self == BITDELAYSELECT_A::LJ
    }
    #[doc = "I2S (1 Bit Delay)"]
    #[inline(always)]
    pub fn is_i2s(&self) -> bool {
        *self == BITDELAYSELECT_A::I2S
    }
}
#[doc = "Field `BITDELAY` writer - Data Delay from Frame Sync"]
pub type BITDELAY_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, BITDELAYSELECT_A>;
impl<'a, REG, const O: u8> BITDELAY_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Left Justified (0 Bit Delay)"]
    #[inline(always)]
    pub fn lj(self) -> &'a mut crate::W<REG> {
        self.variant(BITDELAYSELECT_A::LJ)
    }
    #[doc = "I2S (1 Bit Delay)"]
    #[inline(always)]
    pub fn i2s(self) -> &'a mut crate::W<REG> {
        self.variant(BITDELAYSELECT_A::I2S)
    }
}
#[doc = "Field `FSSEL` reader - Frame Sync Select"]
pub type FSSEL_R = crate::BitReader<FSSELSELECT_A>;
#[doc = "Frame Sync Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FSSELSELECT_A {
    #[doc = "0: Divided Serial Clock n is used as Frame Sync n source"]
    SCKDIV = 0,
    #[doc = "1: FSn input pin is used as Frame Sync n source"]
    FSPIN = 1,
}
impl From<FSSELSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: FSSELSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl FSSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> FSSELSELECT_A {
        match self.bits {
            false => FSSELSELECT_A::SCKDIV,
            true => FSSELSELECT_A::FSPIN,
        }
    }
    #[doc = "Divided Serial Clock n is used as Frame Sync n source"]
    #[inline(always)]
    pub fn is_sckdiv(&self) -> bool {
        *self == FSSELSELECT_A::SCKDIV
    }
    #[doc = "FSn input pin is used as Frame Sync n source"]
    #[inline(always)]
    pub fn is_fspin(&self) -> bool {
        *self == FSSELSELECT_A::FSPIN
    }
}
#[doc = "Field `FSSEL` writer - Frame Sync Select"]
pub type FSSEL_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, FSSELSELECT_A>;
impl<'a, REG, const O: u8> FSSEL_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Divided Serial Clock n is used as Frame Sync n source"]
    #[inline(always)]
    pub fn sckdiv(self) -> &'a mut crate::W<REG> {
        self.variant(FSSELSELECT_A::SCKDIV)
    }
    #[doc = "FSn input pin is used as Frame Sync n source"]
    #[inline(always)]
    pub fn fspin(self) -> &'a mut crate::W<REG> {
        self.variant(FSSELSELECT_A::FSPIN)
    }
}
#[doc = "Field `FSINV` reader - Frame Sync Invert"]
pub type FSINV_R = crate::BitReader;
#[doc = "Field `FSINV` writer - Frame Sync Invert"]
pub type FSINV_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `FSOUTINV` reader - Frame Sync Output Invert"]
pub type FSOUTINV_R = crate::BitReader;
#[doc = "Field `FSOUTINV` writer - Frame Sync Output Invert"]
pub type FSOUTINV_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `SCKSEL` reader - Serial Clock Select"]
pub type SCKSEL_R = crate::BitReader<SCKSELSELECT_A>;
#[doc = "Serial Clock Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SCKSELSELECT_A {
    #[doc = "0: Divided Master Clock n is used as Serial Clock n source"]
    MCKDIV = 0,
    #[doc = "1: SCKn input pin is used as Serial Clock n source"]
    SCKPIN = 1,
}
impl From<SCKSELSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: SCKSELSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl SCKSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> SCKSELSELECT_A {
        match self.bits {
            false => SCKSELSELECT_A::MCKDIV,
            true => SCKSELSELECT_A::SCKPIN,
        }
    }
    #[doc = "Divided Master Clock n is used as Serial Clock n source"]
    #[inline(always)]
    pub fn is_mckdiv(&self) -> bool {
        *self == SCKSELSELECT_A::MCKDIV
    }
    #[doc = "SCKn input pin is used as Serial Clock n source"]
    #[inline(always)]
    pub fn is_sckpin(&self) -> bool {
        *self == SCKSELSELECT_A::SCKPIN
    }
}
#[doc = "Field `SCKSEL` writer - Serial Clock Select"]
pub type SCKSEL_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, SCKSELSELECT_A>;
impl<'a, REG, const O: u8> SCKSEL_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Divided Master Clock n is used as Serial Clock n source"]
    #[inline(always)]
    pub fn mckdiv(self) -> &'a mut crate::W<REG> {
        self.variant(SCKSELSELECT_A::MCKDIV)
    }
    #[doc = "SCKn input pin is used as Serial Clock n source"]
    #[inline(always)]
    pub fn sckpin(self) -> &'a mut crate::W<REG> {
        self.variant(SCKSELSELECT_A::SCKPIN)
    }
}
#[doc = "Field `SCKOUTINV` reader - Serial Clock Output Invert"]
pub type SCKOUTINV_R = crate::BitReader;
#[doc = "Field `SCKOUTINV` writer - Serial Clock Output Invert"]
pub type SCKOUTINV_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `MCKSEL` reader - Master Clock Select"]
pub type MCKSEL_R = crate::BitReader<MCKSELSELECT_A>;
#[doc = "Master Clock Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MCKSELSELECT_A {
    #[doc = "0: GCLK_I2S_n is used as Master Clock n source"]
    GCLK = 0,
    #[doc = "1: MCKn input pin is used as Master Clock n source"]
    MCKPIN = 1,
}
impl From<MCKSELSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: MCKSELSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl MCKSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> MCKSELSELECT_A {
        match self.bits {
            false => MCKSELSELECT_A::GCLK,
            true => MCKSELSELECT_A::MCKPIN,
        }
    }
    #[doc = "GCLK_I2S_n is used as Master Clock n source"]
    #[inline(always)]
    pub fn is_gclk(&self) -> bool {
        *self == MCKSELSELECT_A::GCLK
    }
    #[doc = "MCKn input pin is used as Master Clock n source"]
    #[inline(always)]
    pub fn is_mckpin(&self) -> bool {
        *self == MCKSELSELECT_A::MCKPIN
    }
}
#[doc = "Field `MCKSEL` writer - Master Clock Select"]
pub type MCKSEL_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O, MCKSELSELECT_A>;
impl<'a, REG, const O: u8> MCKSEL_W<'a, REG, O>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "GCLK_I2S_n is used as Master Clock n source"]
    #[inline(always)]
    pub fn gclk(self) -> &'a mut crate::W<REG> {
        self.variant(MCKSELSELECT_A::GCLK)
    }
    #[doc = "MCKn input pin is used as Master Clock n source"]
    #[inline(always)]
    pub fn mckpin(self) -> &'a mut crate::W<REG> {
        self.variant(MCKSELSELECT_A::MCKPIN)
    }
}
#[doc = "Field `MCKEN` reader - Master Clock Enable"]
pub type MCKEN_R = crate::BitReader;
#[doc = "Field `MCKEN` writer - Master Clock Enable"]
pub type MCKEN_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `MCKOUTINV` reader - Master Clock Output Invert"]
pub type MCKOUTINV_R = crate::BitReader;
#[doc = "Field `MCKOUTINV` writer - Master Clock Output Invert"]
pub type MCKOUTINV_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `MCKDIV` reader - Master Clock Division Factor"]
pub type MCKDIV_R = crate::FieldReader;
#[doc = "Field `MCKDIV` writer - Master Clock Division Factor"]
pub type MCKDIV_W<'a, REG, const O: u8> = crate::FieldWriter<'a, REG, 6, O>;
#[doc = "Field `MCKOUTDIV` reader - Master Clock Output Division Factor"]
pub type MCKOUTDIV_R = crate::FieldReader;
#[doc = "Field `MCKOUTDIV` writer - Master Clock Output Division Factor"]
pub type MCKOUTDIV_W<'a, REG, const O: u8> = crate::FieldWriter<'a, REG, 6, O>;
impl R {
    #[doc = "Bits 0:1 - Slot Size"]
    #[inline(always)]
    pub fn slotsize(&self) -> SLOTSIZE_R {
        SLOTSIZE_R::new((self.bits & 3) as u8)
    }
    #[doc = "Bits 2:4 - Number of Slots in Frame"]
    #[inline(always)]
    pub fn nbslots(&self) -> NBSLOTS_R {
        NBSLOTS_R::new(((self.bits >> 2) & 7) as u8)
    }
    #[doc = "Bits 5:6 - Frame Sync Width"]
    #[inline(always)]
    pub fn fswidth(&self) -> FSWIDTH_R {
        FSWIDTH_R::new(((self.bits >> 5) & 3) as u8)
    }
    #[doc = "Bit 7 - Data Delay from Frame Sync"]
    #[inline(always)]
    pub fn bitdelay(&self) -> BITDELAY_R {
        BITDELAY_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Frame Sync Select"]
    #[inline(always)]
    pub fn fssel(&self) -> FSSEL_R {
        FSSEL_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Frame Sync Invert"]
    #[inline(always)]
    pub fn fsinv(&self) -> FSINV_R {
        FSINV_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Frame Sync Output Invert"]
    #[inline(always)]
    pub fn fsoutinv(&self) -> FSOUTINV_R {
        FSOUTINV_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Serial Clock Select"]
    #[inline(always)]
    pub fn scksel(&self) -> SCKSEL_R {
        SCKSEL_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 12 - Serial Clock Output Invert"]
    #[inline(always)]
    pub fn sckoutinv(&self) -> SCKOUTINV_R {
        SCKOUTINV_R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Master Clock Select"]
    #[inline(always)]
    pub fn mcksel(&self) -> MCKSEL_R {
        MCKSEL_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Master Clock Enable"]
    #[inline(always)]
    pub fn mcken(&self) -> MCKEN_R {
        MCKEN_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Master Clock Output Invert"]
    #[inline(always)]
    pub fn mckoutinv(&self) -> MCKOUTINV_R {
        MCKOUTINV_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bits 16:21 - Master Clock Division Factor"]
    #[inline(always)]
    pub fn mckdiv(&self) -> MCKDIV_R {
        MCKDIV_R::new(((self.bits >> 16) & 0x3f) as u8)
    }
    #[doc = "Bits 24:29 - Master Clock Output Division Factor"]
    #[inline(always)]
    pub fn mckoutdiv(&self) -> MCKOUTDIV_R {
        MCKOUTDIV_R::new(((self.bits >> 24) & 0x3f) as u8)
    }
}
impl W {
    #[doc = "Bits 0:1 - Slot Size"]
    #[inline(always)]
    #[must_use]
    pub fn slotsize(&mut self) -> SLOTSIZE_W<CLKCTRL_SPEC, 0> {
        SLOTSIZE_W::new(self)
    }
    #[doc = "Bits 2:4 - Number of Slots in Frame"]
    #[inline(always)]
    #[must_use]
    pub fn nbslots(&mut self) -> NBSLOTS_W<CLKCTRL_SPEC, 2> {
        NBSLOTS_W::new(self)
    }
    #[doc = "Bits 5:6 - Frame Sync Width"]
    #[inline(always)]
    #[must_use]
    pub fn fswidth(&mut self) -> FSWIDTH_W<CLKCTRL_SPEC, 5> {
        FSWIDTH_W::new(self)
    }
    #[doc = "Bit 7 - Data Delay from Frame Sync"]
    #[inline(always)]
    #[must_use]
    pub fn bitdelay(&mut self) -> BITDELAY_W<CLKCTRL_SPEC, 7> {
        BITDELAY_W::new(self)
    }
    #[doc = "Bit 8 - Frame Sync Select"]
    #[inline(always)]
    #[must_use]
    pub fn fssel(&mut self) -> FSSEL_W<CLKCTRL_SPEC, 8> {
        FSSEL_W::new(self)
    }
    #[doc = "Bit 9 - Frame Sync Invert"]
    #[inline(always)]
    #[must_use]
    pub fn fsinv(&mut self) -> FSINV_W<CLKCTRL_SPEC, 9> {
        FSINV_W::new(self)
    }
    #[doc = "Bit 10 - Frame Sync Output Invert"]
    #[inline(always)]
    #[must_use]
    pub fn fsoutinv(&mut self) -> FSOUTINV_W<CLKCTRL_SPEC, 10> {
        FSOUTINV_W::new(self)
    }
    #[doc = "Bit 11 - Serial Clock Select"]
    #[inline(always)]
    #[must_use]
    pub fn scksel(&mut self) -> SCKSEL_W<CLKCTRL_SPEC, 11> {
        SCKSEL_W::new(self)
    }
    #[doc = "Bit 12 - Serial Clock Output Invert"]
    #[inline(always)]
    #[must_use]
    pub fn sckoutinv(&mut self) -> SCKOUTINV_W<CLKCTRL_SPEC, 12> {
        SCKOUTINV_W::new(self)
    }
    #[doc = "Bit 13 - Master Clock Select"]
    #[inline(always)]
    #[must_use]
    pub fn mcksel(&mut self) -> MCKSEL_W<CLKCTRL_SPEC, 13> {
        MCKSEL_W::new(self)
    }
    #[doc = "Bit 14 - Master Clock Enable"]
    #[inline(always)]
    #[must_use]
    pub fn mcken(&mut self) -> MCKEN_W<CLKCTRL_SPEC, 14> {
        MCKEN_W::new(self)
    }
    #[doc = "Bit 15 - Master Clock Output Invert"]
    #[inline(always)]
    #[must_use]
    pub fn mckoutinv(&mut self) -> MCKOUTINV_W<CLKCTRL_SPEC, 15> {
        MCKOUTINV_W::new(self)
    }
    #[doc = "Bits 16:21 - Master Clock Division Factor"]
    #[inline(always)]
    #[must_use]
    pub fn mckdiv(&mut self) -> MCKDIV_W<CLKCTRL_SPEC, 16> {
        MCKDIV_W::new(self)
    }
    #[doc = "Bits 24:29 - Master Clock Output Division Factor"]
    #[inline(always)]
    #[must_use]
    pub fn mckoutdiv(&mut self) -> MCKOUTDIV_W<CLKCTRL_SPEC, 24> {
        MCKOUTDIV_W::new(self)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "Clock Unit n Control\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`clkctrl::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`clkctrl::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CLKCTRL_SPEC;
impl crate::RegisterSpec for CLKCTRL_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`clkctrl::R`](R) reader structure"]
impl crate::Readable for CLKCTRL_SPEC {}
#[doc = "`write(|w| ..)` method takes [`clkctrl::W`](W) writer structure"]
impl crate::Writable for CLKCTRL_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets CLKCTRL[%s]
to value 0"]
impl crate::Resettable for CLKCTRL_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}