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
#[doc = "Reader of register SMOCTRL"]
pub type R = crate::R<u16, super::SMOCTRL>;
#[doc = "Writer for register SMOCTRL"]
pub type W = crate::W<u16, super::SMOCTRL>;
#[doc = "Register SMOCTRL `reset()`'s with value 0"]
impl crate::ResetValue for super::SMOCTRL {
    type Type = u16;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "PWM_X Fault State\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PWMXFS_A {
    #[doc = "0: Output is forced to logic 0 state prior to consideration of output polarity control."]
    PWMXFS_0 = 0,
    #[doc = "1: Output is forced to logic 1 state prior to consideration of output polarity control."]
    PWMXFS_1 = 1,
    #[doc = "2: Output is tristated."]
    PWMXFS_2 = 2,
    #[doc = "3: Output is tristated."]
    PWMXFS_3 = 3,
}
impl From<PWMXFS_A> for u8 {
    #[inline(always)]
    fn from(variant: PWMXFS_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `PWMXFS`"]
pub type PWMXFS_R = crate::R<u8, PWMXFS_A>;
impl PWMXFS_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PWMXFS_A {
        match self.bits {
            0 => PWMXFS_A::PWMXFS_0,
            1 => PWMXFS_A::PWMXFS_1,
            2 => PWMXFS_A::PWMXFS_2,
            3 => PWMXFS_A::PWMXFS_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `PWMXFS_0`"]
    #[inline(always)]
    pub fn is_pwmxfs_0(&self) -> bool {
        *self == PWMXFS_A::PWMXFS_0
    }
    #[doc = "Checks if the value of the field is `PWMXFS_1`"]
    #[inline(always)]
    pub fn is_pwmxfs_1(&self) -> bool {
        *self == PWMXFS_A::PWMXFS_1
    }
    #[doc = "Checks if the value of the field is `PWMXFS_2`"]
    #[inline(always)]
    pub fn is_pwmxfs_2(&self) -> bool {
        *self == PWMXFS_A::PWMXFS_2
    }
    #[doc = "Checks if the value of the field is `PWMXFS_3`"]
    #[inline(always)]
    pub fn is_pwmxfs_3(&self) -> bool {
        *self == PWMXFS_A::PWMXFS_3
    }
}
#[doc = "Write proxy for field `PWMXFS`"]
pub struct PWMXFS_W<'a> {
    w: &'a mut W,
}
impl<'a> PWMXFS_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: PWMXFS_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Output is forced to logic 0 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmxfs_0(self) -> &'a mut W {
        self.variant(PWMXFS_A::PWMXFS_0)
    }
    #[doc = "Output is forced to logic 1 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmxfs_1(self) -> &'a mut W {
        self.variant(PWMXFS_A::PWMXFS_1)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmxfs_2(self) -> &'a mut W {
        self.variant(PWMXFS_A::PWMXFS_2)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmxfs_3(self) -> &'a mut W {
        self.variant(PWMXFS_A::PWMXFS_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x03) | ((value as u16) & 0x03);
        self.w
    }
}
#[doc = "PWM_B Fault State\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PWMBFS_A {
    #[doc = "0: Output is forced to logic 0 state prior to consideration of output polarity control."]
    PWMBFS_0 = 0,
    #[doc = "1: Output is forced to logic 1 state prior to consideration of output polarity control."]
    PWMBFS_1 = 1,
    #[doc = "2: Output is tristated."]
    PWMBFS_2 = 2,
    #[doc = "3: Output is tristated."]
    PWMBFS_3 = 3,
}
impl From<PWMBFS_A> for u8 {
    #[inline(always)]
    fn from(variant: PWMBFS_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `PWMBFS`"]
pub type PWMBFS_R = crate::R<u8, PWMBFS_A>;
impl PWMBFS_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PWMBFS_A {
        match self.bits {
            0 => PWMBFS_A::PWMBFS_0,
            1 => PWMBFS_A::PWMBFS_1,
            2 => PWMBFS_A::PWMBFS_2,
            3 => PWMBFS_A::PWMBFS_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `PWMBFS_0`"]
    #[inline(always)]
    pub fn is_pwmbfs_0(&self) -> bool {
        *self == PWMBFS_A::PWMBFS_0
    }
    #[doc = "Checks if the value of the field is `PWMBFS_1`"]
    #[inline(always)]
    pub fn is_pwmbfs_1(&self) -> bool {
        *self == PWMBFS_A::PWMBFS_1
    }
    #[doc = "Checks if the value of the field is `PWMBFS_2`"]
    #[inline(always)]
    pub fn is_pwmbfs_2(&self) -> bool {
        *self == PWMBFS_A::PWMBFS_2
    }
    #[doc = "Checks if the value of the field is `PWMBFS_3`"]
    #[inline(always)]
    pub fn is_pwmbfs_3(&self) -> bool {
        *self == PWMBFS_A::PWMBFS_3
    }
}
#[doc = "Write proxy for field `PWMBFS`"]
pub struct PWMBFS_W<'a> {
    w: &'a mut W,
}
impl<'a> PWMBFS_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: PWMBFS_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Output is forced to logic 0 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmbfs_0(self) -> &'a mut W {
        self.variant(PWMBFS_A::PWMBFS_0)
    }
    #[doc = "Output is forced to logic 1 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmbfs_1(self) -> &'a mut W {
        self.variant(PWMBFS_A::PWMBFS_1)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmbfs_2(self) -> &'a mut W {
        self.variant(PWMBFS_A::PWMBFS_2)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmbfs_3(self) -> &'a mut W {
        self.variant(PWMBFS_A::PWMBFS_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 2)) | (((value as u16) & 0x03) << 2);
        self.w
    }
}
#[doc = "PWM_A Fault State\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PWMAFS_A {
    #[doc = "0: Output is forced to logic 0 state prior to consideration of output polarity control."]
    PWMAFS_0 = 0,
    #[doc = "1: Output is forced to logic 1 state prior to consideration of output polarity control."]
    PWMAFS_1 = 1,
    #[doc = "2: Output is tristated."]
    PWMAFS_2 = 2,
    #[doc = "3: Output is tristated."]
    PWMAFS_3 = 3,
}
impl From<PWMAFS_A> for u8 {
    #[inline(always)]
    fn from(variant: PWMAFS_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `PWMAFS`"]
pub type PWMAFS_R = crate::R<u8, PWMAFS_A>;
impl PWMAFS_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PWMAFS_A {
        match self.bits {
            0 => PWMAFS_A::PWMAFS_0,
            1 => PWMAFS_A::PWMAFS_1,
            2 => PWMAFS_A::PWMAFS_2,
            3 => PWMAFS_A::PWMAFS_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `PWMAFS_0`"]
    #[inline(always)]
    pub fn is_pwmafs_0(&self) -> bool {
        *self == PWMAFS_A::PWMAFS_0
    }
    #[doc = "Checks if the value of the field is `PWMAFS_1`"]
    #[inline(always)]
    pub fn is_pwmafs_1(&self) -> bool {
        *self == PWMAFS_A::PWMAFS_1
    }
    #[doc = "Checks if the value of the field is `PWMAFS_2`"]
    #[inline(always)]
    pub fn is_pwmafs_2(&self) -> bool {
        *self == PWMAFS_A::PWMAFS_2
    }
    #[doc = "Checks if the value of the field is `PWMAFS_3`"]
    #[inline(always)]
    pub fn is_pwmafs_3(&self) -> bool {
        *self == PWMAFS_A::PWMAFS_3
    }
}
#[doc = "Write proxy for field `PWMAFS`"]
pub struct PWMAFS_W<'a> {
    w: &'a mut W,
}
impl<'a> PWMAFS_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: PWMAFS_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Output is forced to logic 0 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmafs_0(self) -> &'a mut W {
        self.variant(PWMAFS_A::PWMAFS_0)
    }
    #[doc = "Output is forced to logic 1 state prior to consideration of output polarity control."]
    #[inline(always)]
    pub fn pwmafs_1(self) -> &'a mut W {
        self.variant(PWMAFS_A::PWMAFS_1)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmafs_2(self) -> &'a mut W {
        self.variant(PWMAFS_A::PWMAFS_2)
    }
    #[doc = "Output is tristated."]
    #[inline(always)]
    pub fn pwmafs_3(self) -> &'a mut W {
        self.variant(PWMAFS_A::PWMAFS_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u16) & 0x03) << 4);
        self.w
    }
}
#[doc = "PWM_X Output Polarity\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum POLX_A {
    #[doc = "0: PWM_X output not inverted. A high level on the PWM_X pin represents the \"on\" or \"active\" state."]
    POLX_0 = 0,
    #[doc = "1: PWM_X output inverted. A low level on the PWM_X pin represents the \"on\" or \"active\" state."]
    POLX_1 = 1,
}
impl From<POLX_A> for bool {
    #[inline(always)]
    fn from(variant: POLX_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `POLX`"]
pub type POLX_R = crate::R<bool, POLX_A>;
impl POLX_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> POLX_A {
        match self.bits {
            false => POLX_A::POLX_0,
            true => POLX_A::POLX_1,
        }
    }
    #[doc = "Checks if the value of the field is `POLX_0`"]
    #[inline(always)]
    pub fn is_polx_0(&self) -> bool {
        *self == POLX_A::POLX_0
    }
    #[doc = "Checks if the value of the field is `POLX_1`"]
    #[inline(always)]
    pub fn is_polx_1(&self) -> bool {
        *self == POLX_A::POLX_1
    }
}
#[doc = "Write proxy for field `POLX`"]
pub struct POLX_W<'a> {
    w: &'a mut W,
}
impl<'a> POLX_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: POLX_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "PWM_X output not inverted. A high level on the PWM_X pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn polx_0(self) -> &'a mut W {
        self.variant(POLX_A::POLX_0)
    }
    #[doc = "PWM_X output inverted. A low level on the PWM_X pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn polx_1(self) -> &'a mut W {
        self.variant(POLX_A::POLX_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 = "PWM_B Output Polarity\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum POLB_A {
    #[doc = "0: PWM_B output not inverted. A high level on the PWM_B pin represents the \"on\" or \"active\" state."]
    POLB_0 = 0,
    #[doc = "1: PWM_B output inverted. A low level on the PWM_B pin represents the \"on\" or \"active\" state."]
    POLB_1 = 1,
}
impl From<POLB_A> for bool {
    #[inline(always)]
    fn from(variant: POLB_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `POLB`"]
pub type POLB_R = crate::R<bool, POLB_A>;
impl POLB_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> POLB_A {
        match self.bits {
            false => POLB_A::POLB_0,
            true => POLB_A::POLB_1,
        }
    }
    #[doc = "Checks if the value of the field is `POLB_0`"]
    #[inline(always)]
    pub fn is_polb_0(&self) -> bool {
        *self == POLB_A::POLB_0
    }
    #[doc = "Checks if the value of the field is `POLB_1`"]
    #[inline(always)]
    pub fn is_polb_1(&self) -> bool {
        *self == POLB_A::POLB_1
    }
}
#[doc = "Write proxy for field `POLB`"]
pub struct POLB_W<'a> {
    w: &'a mut W,
}
impl<'a> POLB_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: POLB_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "PWM_B output not inverted. A high level on the PWM_B pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn polb_0(self) -> &'a mut W {
        self.variant(POLB_A::POLB_0)
    }
    #[doc = "PWM_B output inverted. A low level on the PWM_B pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn polb_1(self) -> &'a mut W {
        self.variant(POLB_A::POLB_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 = "PWM_A Output Polarity\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum POLA_A {
    #[doc = "0: PWM_A output not inverted. A high level on the PWM_A pin represents the \"on\" or \"active\" state."]
    POLA_0 = 0,
    #[doc = "1: PWM_A output inverted. A low level on the PWM_A pin represents the \"on\" or \"active\" state."]
    POLA_1 = 1,
}
impl From<POLA_A> for bool {
    #[inline(always)]
    fn from(variant: POLA_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `POLA`"]
pub type POLA_R = crate::R<bool, POLA_A>;
impl POLA_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> POLA_A {
        match self.bits {
            false => POLA_A::POLA_0,
            true => POLA_A::POLA_1,
        }
    }
    #[doc = "Checks if the value of the field is `POLA_0`"]
    #[inline(always)]
    pub fn is_pola_0(&self) -> bool {
        *self == POLA_A::POLA_0
    }
    #[doc = "Checks if the value of the field is `POLA_1`"]
    #[inline(always)]
    pub fn is_pola_1(&self) -> bool {
        *self == POLA_A::POLA_1
    }
}
#[doc = "Write proxy for field `POLA`"]
pub struct POLA_W<'a> {
    w: &'a mut W,
}
impl<'a> POLA_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: POLA_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "PWM_A output not inverted. A high level on the PWM_A pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn pola_0(self) -> &'a mut W {
        self.variant(POLA_A::POLA_0)
    }
    #[doc = "PWM_A output inverted. A low level on the PWM_A pin represents the \"on\" or \"active\" state."]
    #[inline(always)]
    pub fn pola_1(self) -> &'a mut W {
        self.variant(POLA_A::POLA_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 = "Reader of field `PWMX_IN`"]
pub type PWMX_IN_R = crate::R<bool, bool>;
#[doc = "Reader of field `PWMB_IN`"]
pub type PWMB_IN_R = crate::R<bool, bool>;
#[doc = "Reader of field `PWMA_IN`"]
pub type PWMA_IN_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bits 0:1 - PWM_X Fault State"]
    #[inline(always)]
    pub fn pwmxfs(&self) -> PWMXFS_R {
        PWMXFS_R::new((self.bits & 0x03) as u8)
    }
    #[doc = "Bits 2:3 - PWM_B Fault State"]
    #[inline(always)]
    pub fn pwmbfs(&self) -> PWMBFS_R {
        PWMBFS_R::new(((self.bits >> 2) & 0x03) as u8)
    }
    #[doc = "Bits 4:5 - PWM_A Fault State"]
    #[inline(always)]
    pub fn pwmafs(&self) -> PWMAFS_R {
        PWMAFS_R::new(((self.bits >> 4) & 0x03) as u8)
    }
    #[doc = "Bit 8 - PWM_X Output Polarity"]
    #[inline(always)]
    pub fn polx(&self) -> POLX_R {
        POLX_R::new(((self.bits >> 8) & 0x01) != 0)
    }
    #[doc = "Bit 9 - PWM_B Output Polarity"]
    #[inline(always)]
    pub fn polb(&self) -> POLB_R {
        POLB_R::new(((self.bits >> 9) & 0x01) != 0)
    }
    #[doc = "Bit 10 - PWM_A Output Polarity"]
    #[inline(always)]
    pub fn pola(&self) -> POLA_R {
        POLA_R::new(((self.bits >> 10) & 0x01) != 0)
    }
    #[doc = "Bit 13 - PWM_X Input"]
    #[inline(always)]
    pub fn pwmx_in(&self) -> PWMX_IN_R {
        PWMX_IN_R::new(((self.bits >> 13) & 0x01) != 0)
    }
    #[doc = "Bit 14 - PWM_B Input"]
    #[inline(always)]
    pub fn pwmb_in(&self) -> PWMB_IN_R {
        PWMB_IN_R::new(((self.bits >> 14) & 0x01) != 0)
    }
    #[doc = "Bit 15 - PWM_A Input"]
    #[inline(always)]
    pub fn pwma_in(&self) -> PWMA_IN_R {
        PWMA_IN_R::new(((self.bits >> 15) & 0x01) != 0)
    }
}
impl W {
    #[doc = "Bits 0:1 - PWM_X Fault State"]
    #[inline(always)]
    pub fn pwmxfs(&mut self) -> PWMXFS_W {
        PWMXFS_W { w: self }
    }
    #[doc = "Bits 2:3 - PWM_B Fault State"]
    #[inline(always)]
    pub fn pwmbfs(&mut self) -> PWMBFS_W {
        PWMBFS_W { w: self }
    }
    #[doc = "Bits 4:5 - PWM_A Fault State"]
    #[inline(always)]
    pub fn pwmafs(&mut self) -> PWMAFS_W {
        PWMAFS_W { w: self }
    }
    #[doc = "Bit 8 - PWM_X Output Polarity"]
    #[inline(always)]
    pub fn polx(&mut self) -> POLX_W {
        POLX_W { w: self }
    }
    #[doc = "Bit 9 - PWM_B Output Polarity"]
    #[inline(always)]
    pub fn polb(&mut self) -> POLB_W {
        POLB_W { w: self }
    }
    #[doc = "Bit 10 - PWM_A Output Polarity"]
    #[inline(always)]
    pub fn pola(&mut self) -> POLA_W {
        POLA_W { w: self }
    }
}