1#[doc = "Register `MSTPCRB` reader"]
2pub struct R(crate::R<MSTPCRB_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<MSTPCRB_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<MSTPCRB_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<MSTPCRB_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `MSTPCRB` writer"]
17pub struct W(crate::W<MSTPCRB_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<MSTPCRB_SPEC>;
20 #[inline(always)]
21 fn deref(&self) -> &Self::Target {
22 &self.0
23 }
24}
25impl core::ops::DerefMut for W {
26 #[inline(always)]
27 fn deref_mut(&mut self) -> &mut Self::Target {
28 &mut self.0
29 }
30}
31impl From<crate::W<MSTPCRB_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<MSTPCRB_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `MSTPB2` reader - Controller Area Network Module Stop"]
38pub type MSTPB2_R = crate::BitReader<MSTPB2_A>;
39#[doc = "Controller Area Network Module Stop\n\nValue on reset: 1"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum MSTPB2_A {
42 #[doc = "0: Cancel the module-stop state"]
43 _0 = 0,
44 #[doc = "1: Enter the module-stop state"]
45 _1 = 1,
46}
47impl From<MSTPB2_A> for bool {
48 #[inline(always)]
49 fn from(variant: MSTPB2_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl MSTPB2_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> MSTPB2_A {
57 match self.bits {
58 false => MSTPB2_A::_0,
59 true => MSTPB2_A::_1,
60 }
61 }
62 #[doc = "Checks if the value of the field is `_0`"]
63 #[inline(always)]
64 pub fn is_0(&self) -> bool {
65 *self == MSTPB2_A::_0
66 }
67 #[doc = "Checks if the value of the field is `_1`"]
68 #[inline(always)]
69 pub fn is_1(&self) -> bool {
70 *self == MSTPB2_A::_1
71 }
72}
73#[doc = "Field `MSTPB2` writer - Controller Area Network Module Stop"]
74pub type MSTPB2_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB2_A, O>;
75impl<'a, const O: u8> MSTPB2_W<'a, O> {
76 #[doc = "Cancel the module-stop state"]
77 #[inline(always)]
78 pub fn _0(self) -> &'a mut W {
79 self.variant(MSTPB2_A::_0)
80 }
81 #[doc = "Enter the module-stop state"]
82 #[inline(always)]
83 pub fn _1(self) -> &'a mut W {
84 self.variant(MSTPB2_A::_1)
85 }
86}
87#[doc = "Field `MSTPB6` reader - Queued Serial Peripheral Interface Module Stop"]
88pub type MSTPB6_R = crate::BitReader<MSTPB6_A>;
89#[doc = "Queued Serial Peripheral Interface Module Stop\n\nValue on reset: 1"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum MSTPB6_A {
92 #[doc = "0: Cancel the module-stop state"]
93 _0 = 0,
94 #[doc = "1: Enter the module-stop state"]
95 _1 = 1,
96}
97impl From<MSTPB6_A> for bool {
98 #[inline(always)]
99 fn from(variant: MSTPB6_A) -> Self {
100 variant as u8 != 0
101 }
102}
103impl MSTPB6_R {
104 #[doc = "Get enumerated values variant"]
105 #[inline(always)]
106 pub fn variant(&self) -> MSTPB6_A {
107 match self.bits {
108 false => MSTPB6_A::_0,
109 true => MSTPB6_A::_1,
110 }
111 }
112 #[doc = "Checks if the value of the field is `_0`"]
113 #[inline(always)]
114 pub fn is_0(&self) -> bool {
115 *self == MSTPB6_A::_0
116 }
117 #[doc = "Checks if the value of the field is `_1`"]
118 #[inline(always)]
119 pub fn is_1(&self) -> bool {
120 *self == MSTPB6_A::_1
121 }
122}
123#[doc = "Field `MSTPB6` writer - Queued Serial Peripheral Interface Module Stop"]
124pub type MSTPB6_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB6_A, O>;
125impl<'a, const O: u8> MSTPB6_W<'a, O> {
126 #[doc = "Cancel the module-stop state"]
127 #[inline(always)]
128 pub fn _0(self) -> &'a mut W {
129 self.variant(MSTPB6_A::_0)
130 }
131 #[doc = "Enter the module-stop state"]
132 #[inline(always)]
133 pub fn _1(self) -> &'a mut W {
134 self.variant(MSTPB6_A::_1)
135 }
136}
137#[doc = "Field `MSTPB7` reader - I2C Bus Interface 2 Module Stop"]
138pub type MSTPB7_R = crate::BitReader<MSTPB7_A>;
139#[doc = "I2C Bus Interface 2 Module Stop\n\nValue on reset: 1"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum MSTPB7_A {
142 #[doc = "0: Cancel the module-stop state"]
143 _0 = 0,
144 #[doc = "1: Enter the module-stop state"]
145 _1 = 1,
146}
147impl From<MSTPB7_A> for bool {
148 #[inline(always)]
149 fn from(variant: MSTPB7_A) -> Self {
150 variant as u8 != 0
151 }
152}
153impl MSTPB7_R {
154 #[doc = "Get enumerated values variant"]
155 #[inline(always)]
156 pub fn variant(&self) -> MSTPB7_A {
157 match self.bits {
158 false => MSTPB7_A::_0,
159 true => MSTPB7_A::_1,
160 }
161 }
162 #[doc = "Checks if the value of the field is `_0`"]
163 #[inline(always)]
164 pub fn is_0(&self) -> bool {
165 *self == MSTPB7_A::_0
166 }
167 #[doc = "Checks if the value of the field is `_1`"]
168 #[inline(always)]
169 pub fn is_1(&self) -> bool {
170 *self == MSTPB7_A::_1
171 }
172}
173#[doc = "Field `MSTPB7` writer - I2C Bus Interface 2 Module Stop"]
174pub type MSTPB7_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB7_A, O>;
175impl<'a, const O: u8> MSTPB7_W<'a, O> {
176 #[doc = "Cancel the module-stop state"]
177 #[inline(always)]
178 pub fn _0(self) -> &'a mut W {
179 self.variant(MSTPB7_A::_0)
180 }
181 #[doc = "Enter the module-stop state"]
182 #[inline(always)]
183 pub fn _1(self) -> &'a mut W {
184 self.variant(MSTPB7_A::_1)
185 }
186}
187#[doc = "Field `MSTPB8` reader - I2C Bus Interface 1 Module Stop"]
188pub type MSTPB8_R = crate::BitReader<MSTPB8_A>;
189#[doc = "I2C Bus Interface 1 Module Stop\n\nValue on reset: 1"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum MSTPB8_A {
192 #[doc = "0: Cancel the module-stop state"]
193 _0 = 0,
194 #[doc = "1: Enter the module-stop state"]
195 _1 = 1,
196}
197impl From<MSTPB8_A> for bool {
198 #[inline(always)]
199 fn from(variant: MSTPB8_A) -> Self {
200 variant as u8 != 0
201 }
202}
203impl MSTPB8_R {
204 #[doc = "Get enumerated values variant"]
205 #[inline(always)]
206 pub fn variant(&self) -> MSTPB8_A {
207 match self.bits {
208 false => MSTPB8_A::_0,
209 true => MSTPB8_A::_1,
210 }
211 }
212 #[doc = "Checks if the value of the field is `_0`"]
213 #[inline(always)]
214 pub fn is_0(&self) -> bool {
215 *self == MSTPB8_A::_0
216 }
217 #[doc = "Checks if the value of the field is `_1`"]
218 #[inline(always)]
219 pub fn is_1(&self) -> bool {
220 *self == MSTPB8_A::_1
221 }
222}
223#[doc = "Field `MSTPB8` writer - I2C Bus Interface 1 Module Stop"]
224pub type MSTPB8_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB8_A, O>;
225impl<'a, const O: u8> MSTPB8_W<'a, O> {
226 #[doc = "Cancel the module-stop state"]
227 #[inline(always)]
228 pub fn _0(self) -> &'a mut W {
229 self.variant(MSTPB8_A::_0)
230 }
231 #[doc = "Enter the module-stop state"]
232 #[inline(always)]
233 pub fn _1(self) -> &'a mut W {
234 self.variant(MSTPB8_A::_1)
235 }
236}
237#[doc = "Field `MSTPB9` reader - I2C Bus Interface 0 Module Stop"]
238pub type MSTPB9_R = crate::BitReader<MSTPB9_A>;
239#[doc = "I2C Bus Interface 0 Module Stop\n\nValue on reset: 1"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum MSTPB9_A {
242 #[doc = "0: Cancel the module-stop state"]
243 _0 = 0,
244 #[doc = "1: Enter the module-stop state"]
245 _1 = 1,
246}
247impl From<MSTPB9_A> for bool {
248 #[inline(always)]
249 fn from(variant: MSTPB9_A) -> Self {
250 variant as u8 != 0
251 }
252}
253impl MSTPB9_R {
254 #[doc = "Get enumerated values variant"]
255 #[inline(always)]
256 pub fn variant(&self) -> MSTPB9_A {
257 match self.bits {
258 false => MSTPB9_A::_0,
259 true => MSTPB9_A::_1,
260 }
261 }
262 #[doc = "Checks if the value of the field is `_0`"]
263 #[inline(always)]
264 pub fn is_0(&self) -> bool {
265 *self == MSTPB9_A::_0
266 }
267 #[doc = "Checks if the value of the field is `_1`"]
268 #[inline(always)]
269 pub fn is_1(&self) -> bool {
270 *self == MSTPB9_A::_1
271 }
272}
273#[doc = "Field `MSTPB9` writer - I2C Bus Interface 0 Module Stop"]
274pub type MSTPB9_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB9_A, O>;
275impl<'a, const O: u8> MSTPB9_W<'a, O> {
276 #[doc = "Cancel the module-stop state"]
277 #[inline(always)]
278 pub fn _0(self) -> &'a mut W {
279 self.variant(MSTPB9_A::_0)
280 }
281 #[doc = "Enter the module-stop state"]
282 #[inline(always)]
283 pub fn _1(self) -> &'a mut W {
284 self.variant(MSTPB9_A::_1)
285 }
286}
287#[doc = "Field `MSTPB11` reader - Universal Serial Bus 2.0 FS Interface Module Stop"]
288pub type MSTPB11_R = crate::BitReader<MSTPB11_A>;
289#[doc = "Universal Serial Bus 2.0 FS Interface Module Stop\n\nValue on reset: 1"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum MSTPB11_A {
292 #[doc = "0: Cancel the module-stop state"]
293 _0 = 0,
294 #[doc = "1: Enter the module-stop state"]
295 _1 = 1,
296}
297impl From<MSTPB11_A> for bool {
298 #[inline(always)]
299 fn from(variant: MSTPB11_A) -> Self {
300 variant as u8 != 0
301 }
302}
303impl MSTPB11_R {
304 #[doc = "Get enumerated values variant"]
305 #[inline(always)]
306 pub fn variant(&self) -> MSTPB11_A {
307 match self.bits {
308 false => MSTPB11_A::_0,
309 true => MSTPB11_A::_1,
310 }
311 }
312 #[doc = "Checks if the value of the field is `_0`"]
313 #[inline(always)]
314 pub fn is_0(&self) -> bool {
315 *self == MSTPB11_A::_0
316 }
317 #[doc = "Checks if the value of the field is `_1`"]
318 #[inline(always)]
319 pub fn is_1(&self) -> bool {
320 *self == MSTPB11_A::_1
321 }
322}
323#[doc = "Field `MSTPB11` writer - Universal Serial Bus 2.0 FS Interface Module Stop"]
324pub type MSTPB11_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB11_A, O>;
325impl<'a, const O: u8> MSTPB11_W<'a, O> {
326 #[doc = "Cancel the module-stop state"]
327 #[inline(always)]
328 pub fn _0(self) -> &'a mut W {
329 self.variant(MSTPB11_A::_0)
330 }
331 #[doc = "Enter the module-stop state"]
332 #[inline(always)]
333 pub fn _1(self) -> &'a mut W {
334 self.variant(MSTPB11_A::_1)
335 }
336}
337#[doc = "Field `MSTPB18` reader - Serial Peripheral Interface 1 Module Stop"]
338pub type MSTPB18_R = crate::BitReader<MSTPB18_A>;
339#[doc = "Serial Peripheral Interface 1 Module Stop\n\nValue on reset: 1"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum MSTPB18_A {
342 #[doc = "0: Cancel the module-stop state"]
343 _0 = 0,
344 #[doc = "1: Enter the module-stop state"]
345 _1 = 1,
346}
347impl From<MSTPB18_A> for bool {
348 #[inline(always)]
349 fn from(variant: MSTPB18_A) -> Self {
350 variant as u8 != 0
351 }
352}
353impl MSTPB18_R {
354 #[doc = "Get enumerated values variant"]
355 #[inline(always)]
356 pub fn variant(&self) -> MSTPB18_A {
357 match self.bits {
358 false => MSTPB18_A::_0,
359 true => MSTPB18_A::_1,
360 }
361 }
362 #[doc = "Checks if the value of the field is `_0`"]
363 #[inline(always)]
364 pub fn is_0(&self) -> bool {
365 *self == MSTPB18_A::_0
366 }
367 #[doc = "Checks if the value of the field is `_1`"]
368 #[inline(always)]
369 pub fn is_1(&self) -> bool {
370 *self == MSTPB18_A::_1
371 }
372}
373#[doc = "Field `MSTPB18` writer - Serial Peripheral Interface 1 Module Stop"]
374pub type MSTPB18_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB18_A, O>;
375impl<'a, const O: u8> MSTPB18_W<'a, O> {
376 #[doc = "Cancel the module-stop state"]
377 #[inline(always)]
378 pub fn _0(self) -> &'a mut W {
379 self.variant(MSTPB18_A::_0)
380 }
381 #[doc = "Enter the module-stop state"]
382 #[inline(always)]
383 pub fn _1(self) -> &'a mut W {
384 self.variant(MSTPB18_A::_1)
385 }
386}
387#[doc = "Field `MSTPB19` reader - Serial Peripheral Interface 0 Module Stop"]
388pub type MSTPB19_R = crate::BitReader<MSTPB19_A>;
389#[doc = "Serial Peripheral Interface 0 Module Stop\n\nValue on reset: 1"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum MSTPB19_A {
392 #[doc = "0: Cancel the module-stop state"]
393 _0 = 0,
394 #[doc = "1: Enter the module-stop state"]
395 _1 = 1,
396}
397impl From<MSTPB19_A> for bool {
398 #[inline(always)]
399 fn from(variant: MSTPB19_A) -> Self {
400 variant as u8 != 0
401 }
402}
403impl MSTPB19_R {
404 #[doc = "Get enumerated values variant"]
405 #[inline(always)]
406 pub fn variant(&self) -> MSTPB19_A {
407 match self.bits {
408 false => MSTPB19_A::_0,
409 true => MSTPB19_A::_1,
410 }
411 }
412 #[doc = "Checks if the value of the field is `_0`"]
413 #[inline(always)]
414 pub fn is_0(&self) -> bool {
415 *self == MSTPB19_A::_0
416 }
417 #[doc = "Checks if the value of the field is `_1`"]
418 #[inline(always)]
419 pub fn is_1(&self) -> bool {
420 *self == MSTPB19_A::_1
421 }
422}
423#[doc = "Field `MSTPB19` writer - Serial Peripheral Interface 0 Module Stop"]
424pub type MSTPB19_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB19_A, O>;
425impl<'a, const O: u8> MSTPB19_W<'a, O> {
426 #[doc = "Cancel the module-stop state"]
427 #[inline(always)]
428 pub fn _0(self) -> &'a mut W {
429 self.variant(MSTPB19_A::_0)
430 }
431 #[doc = "Enter the module-stop state"]
432 #[inline(always)]
433 pub fn _1(self) -> &'a mut W {
434 self.variant(MSTPB19_A::_1)
435 }
436}
437#[doc = "Field `MSTPB22` reader - Serial Communication Interface 9 Module Stop"]
438pub type MSTPB22_R = crate::BitReader<MSTPB22_A>;
439#[doc = "Serial Communication Interface 9 Module Stop\n\nValue on reset: 1"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum MSTPB22_A {
442 #[doc = "0: Cancel the module-stop state"]
443 _0 = 0,
444 #[doc = "1: Enter the module-stop state"]
445 _1 = 1,
446}
447impl From<MSTPB22_A> for bool {
448 #[inline(always)]
449 fn from(variant: MSTPB22_A) -> Self {
450 variant as u8 != 0
451 }
452}
453impl MSTPB22_R {
454 #[doc = "Get enumerated values variant"]
455 #[inline(always)]
456 pub fn variant(&self) -> MSTPB22_A {
457 match self.bits {
458 false => MSTPB22_A::_0,
459 true => MSTPB22_A::_1,
460 }
461 }
462 #[doc = "Checks if the value of the field is `_0`"]
463 #[inline(always)]
464 pub fn is_0(&self) -> bool {
465 *self == MSTPB22_A::_0
466 }
467 #[doc = "Checks if the value of the field is `_1`"]
468 #[inline(always)]
469 pub fn is_1(&self) -> bool {
470 *self == MSTPB22_A::_1
471 }
472}
473#[doc = "Field `MSTPB22` writer - Serial Communication Interface 9 Module Stop"]
474pub type MSTPB22_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB22_A, O>;
475impl<'a, const O: u8> MSTPB22_W<'a, O> {
476 #[doc = "Cancel the module-stop state"]
477 #[inline(always)]
478 pub fn _0(self) -> &'a mut W {
479 self.variant(MSTPB22_A::_0)
480 }
481 #[doc = "Enter the module-stop state"]
482 #[inline(always)]
483 pub fn _1(self) -> &'a mut W {
484 self.variant(MSTPB22_A::_1)
485 }
486}
487#[doc = "Field `MSTPB27` reader - Serial Communication Interface 4 Module Stop"]
488pub type MSTPB27_R = crate::BitReader<MSTPB27_A>;
489#[doc = "Serial Communication Interface 4 Module Stop\n\nValue on reset: 1"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum MSTPB27_A {
492 #[doc = "0: Cancel the module-stop state"]
493 _0 = 0,
494 #[doc = "1: Enter the module-stop state"]
495 _1 = 1,
496}
497impl From<MSTPB27_A> for bool {
498 #[inline(always)]
499 fn from(variant: MSTPB27_A) -> Self {
500 variant as u8 != 0
501 }
502}
503impl MSTPB27_R {
504 #[doc = "Get enumerated values variant"]
505 #[inline(always)]
506 pub fn variant(&self) -> MSTPB27_A {
507 match self.bits {
508 false => MSTPB27_A::_0,
509 true => MSTPB27_A::_1,
510 }
511 }
512 #[doc = "Checks if the value of the field is `_0`"]
513 #[inline(always)]
514 pub fn is_0(&self) -> bool {
515 *self == MSTPB27_A::_0
516 }
517 #[doc = "Checks if the value of the field is `_1`"]
518 #[inline(always)]
519 pub fn is_1(&self) -> bool {
520 *self == MSTPB27_A::_1
521 }
522}
523#[doc = "Field `MSTPB27` writer - Serial Communication Interface 4 Module Stop"]
524pub type MSTPB27_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB27_A, O>;
525impl<'a, const O: u8> MSTPB27_W<'a, O> {
526 #[doc = "Cancel the module-stop state"]
527 #[inline(always)]
528 pub fn _0(self) -> &'a mut W {
529 self.variant(MSTPB27_A::_0)
530 }
531 #[doc = "Enter the module-stop state"]
532 #[inline(always)]
533 pub fn _1(self) -> &'a mut W {
534 self.variant(MSTPB27_A::_1)
535 }
536}
537#[doc = "Field `MSTPB28` reader - Serial Communication Interface 3 Module Stop"]
538pub type MSTPB28_R = crate::BitReader<MSTPB28_A>;
539#[doc = "Serial Communication Interface 3 Module Stop\n\nValue on reset: 1"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum MSTPB28_A {
542 #[doc = "0: Cancel the module-stop state"]
543 _0 = 0,
544 #[doc = "1: Enter the module-stop state"]
545 _1 = 1,
546}
547impl From<MSTPB28_A> for bool {
548 #[inline(always)]
549 fn from(variant: MSTPB28_A) -> Self {
550 variant as u8 != 0
551 }
552}
553impl MSTPB28_R {
554 #[doc = "Get enumerated values variant"]
555 #[inline(always)]
556 pub fn variant(&self) -> MSTPB28_A {
557 match self.bits {
558 false => MSTPB28_A::_0,
559 true => MSTPB28_A::_1,
560 }
561 }
562 #[doc = "Checks if the value of the field is `_0`"]
563 #[inline(always)]
564 pub fn is_0(&self) -> bool {
565 *self == MSTPB28_A::_0
566 }
567 #[doc = "Checks if the value of the field is `_1`"]
568 #[inline(always)]
569 pub fn is_1(&self) -> bool {
570 *self == MSTPB28_A::_1
571 }
572}
573#[doc = "Field `MSTPB28` writer - Serial Communication Interface 3 Module Stop"]
574pub type MSTPB28_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB28_A, O>;
575impl<'a, const O: u8> MSTPB28_W<'a, O> {
576 #[doc = "Cancel the module-stop state"]
577 #[inline(always)]
578 pub fn _0(self) -> &'a mut W {
579 self.variant(MSTPB28_A::_0)
580 }
581 #[doc = "Enter the module-stop state"]
582 #[inline(always)]
583 pub fn _1(self) -> &'a mut W {
584 self.variant(MSTPB28_A::_1)
585 }
586}
587#[doc = "Field `MSTPB29` reader - Serial Communication Interface 2 Module Stop"]
588pub type MSTPB29_R = crate::BitReader<MSTPB29_A>;
589#[doc = "Serial Communication Interface 2 Module Stop\n\nValue on reset: 1"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum MSTPB29_A {
592 #[doc = "0: Cancel the module-stop state"]
593 _0 = 0,
594 #[doc = "1: Enter the module-stop state"]
595 _1 = 1,
596}
597impl From<MSTPB29_A> for bool {
598 #[inline(always)]
599 fn from(variant: MSTPB29_A) -> Self {
600 variant as u8 != 0
601 }
602}
603impl MSTPB29_R {
604 #[doc = "Get enumerated values variant"]
605 #[inline(always)]
606 pub fn variant(&self) -> MSTPB29_A {
607 match self.bits {
608 false => MSTPB29_A::_0,
609 true => MSTPB29_A::_1,
610 }
611 }
612 #[doc = "Checks if the value of the field is `_0`"]
613 #[inline(always)]
614 pub fn is_0(&self) -> bool {
615 *self == MSTPB29_A::_0
616 }
617 #[doc = "Checks if the value of the field is `_1`"]
618 #[inline(always)]
619 pub fn is_1(&self) -> bool {
620 *self == MSTPB29_A::_1
621 }
622}
623#[doc = "Field `MSTPB29` writer - Serial Communication Interface 2 Module Stop"]
624pub type MSTPB29_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB29_A, O>;
625impl<'a, const O: u8> MSTPB29_W<'a, O> {
626 #[doc = "Cancel the module-stop state"]
627 #[inline(always)]
628 pub fn _0(self) -> &'a mut W {
629 self.variant(MSTPB29_A::_0)
630 }
631 #[doc = "Enter the module-stop state"]
632 #[inline(always)]
633 pub fn _1(self) -> &'a mut W {
634 self.variant(MSTPB29_A::_1)
635 }
636}
637#[doc = "Field `MSTPB30` reader - Serial Communication Interface 1 Module Stop"]
638pub type MSTPB30_R = crate::BitReader<MSTPB30_A>;
639#[doc = "Serial Communication Interface 1 Module Stop\n\nValue on reset: 1"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum MSTPB30_A {
642 #[doc = "0: Cancel the module-stop state"]
643 _0 = 0,
644 #[doc = "1: Enter the module-stop state"]
645 _1 = 1,
646}
647impl From<MSTPB30_A> for bool {
648 #[inline(always)]
649 fn from(variant: MSTPB30_A) -> Self {
650 variant as u8 != 0
651 }
652}
653impl MSTPB30_R {
654 #[doc = "Get enumerated values variant"]
655 #[inline(always)]
656 pub fn variant(&self) -> MSTPB30_A {
657 match self.bits {
658 false => MSTPB30_A::_0,
659 true => MSTPB30_A::_1,
660 }
661 }
662 #[doc = "Checks if the value of the field is `_0`"]
663 #[inline(always)]
664 pub fn is_0(&self) -> bool {
665 *self == MSTPB30_A::_0
666 }
667 #[doc = "Checks if the value of the field is `_1`"]
668 #[inline(always)]
669 pub fn is_1(&self) -> bool {
670 *self == MSTPB30_A::_1
671 }
672}
673#[doc = "Field `MSTPB30` writer - Serial Communication Interface 1 Module Stop"]
674pub type MSTPB30_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB30_A, O>;
675impl<'a, const O: u8> MSTPB30_W<'a, O> {
676 #[doc = "Cancel the module-stop state"]
677 #[inline(always)]
678 pub fn _0(self) -> &'a mut W {
679 self.variant(MSTPB30_A::_0)
680 }
681 #[doc = "Enter the module-stop state"]
682 #[inline(always)]
683 pub fn _1(self) -> &'a mut W {
684 self.variant(MSTPB30_A::_1)
685 }
686}
687#[doc = "Field `MSTPB31` reader - Serial Communication Interface 0 Module Stop"]
688pub type MSTPB31_R = crate::BitReader<MSTPB31_A>;
689#[doc = "Serial Communication Interface 0 Module Stop\n\nValue on reset: 1"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum MSTPB31_A {
692 #[doc = "0: Cancel the module-stop state"]
693 _0 = 0,
694 #[doc = "1: Enter the module-stop state"]
695 _1 = 1,
696}
697impl From<MSTPB31_A> for bool {
698 #[inline(always)]
699 fn from(variant: MSTPB31_A) -> Self {
700 variant as u8 != 0
701 }
702}
703impl MSTPB31_R {
704 #[doc = "Get enumerated values variant"]
705 #[inline(always)]
706 pub fn variant(&self) -> MSTPB31_A {
707 match self.bits {
708 false => MSTPB31_A::_0,
709 true => MSTPB31_A::_1,
710 }
711 }
712 #[doc = "Checks if the value of the field is `_0`"]
713 #[inline(always)]
714 pub fn is_0(&self) -> bool {
715 *self == MSTPB31_A::_0
716 }
717 #[doc = "Checks if the value of the field is `_1`"]
718 #[inline(always)]
719 pub fn is_1(&self) -> bool {
720 *self == MSTPB31_A::_1
721 }
722}
723#[doc = "Field `MSTPB31` writer - Serial Communication Interface 0 Module Stop"]
724pub type MSTPB31_W<'a, const O: u8> = crate::BitWriter<'a, u32, MSTPCRB_SPEC, MSTPB31_A, O>;
725impl<'a, const O: u8> MSTPB31_W<'a, O> {
726 #[doc = "Cancel the module-stop state"]
727 #[inline(always)]
728 pub fn _0(self) -> &'a mut W {
729 self.variant(MSTPB31_A::_0)
730 }
731 #[doc = "Enter the module-stop state"]
732 #[inline(always)]
733 pub fn _1(self) -> &'a mut W {
734 self.variant(MSTPB31_A::_1)
735 }
736}
737impl R {
738 #[doc = "Bit 2 - Controller Area Network Module Stop"]
739 #[inline(always)]
740 pub fn mstpb2(&self) -> MSTPB2_R {
741 MSTPB2_R::new(((self.bits >> 2) & 1) != 0)
742 }
743 #[doc = "Bit 6 - Queued Serial Peripheral Interface Module Stop"]
744 #[inline(always)]
745 pub fn mstpb6(&self) -> MSTPB6_R {
746 MSTPB6_R::new(((self.bits >> 6) & 1) != 0)
747 }
748 #[doc = "Bit 7 - I2C Bus Interface 2 Module Stop"]
749 #[inline(always)]
750 pub fn mstpb7(&self) -> MSTPB7_R {
751 MSTPB7_R::new(((self.bits >> 7) & 1) != 0)
752 }
753 #[doc = "Bit 8 - I2C Bus Interface 1 Module Stop"]
754 #[inline(always)]
755 pub fn mstpb8(&self) -> MSTPB8_R {
756 MSTPB8_R::new(((self.bits >> 8) & 1) != 0)
757 }
758 #[doc = "Bit 9 - I2C Bus Interface 0 Module Stop"]
759 #[inline(always)]
760 pub fn mstpb9(&self) -> MSTPB9_R {
761 MSTPB9_R::new(((self.bits >> 9) & 1) != 0)
762 }
763 #[doc = "Bit 11 - Universal Serial Bus 2.0 FS Interface Module Stop"]
764 #[inline(always)]
765 pub fn mstpb11(&self) -> MSTPB11_R {
766 MSTPB11_R::new(((self.bits >> 11) & 1) != 0)
767 }
768 #[doc = "Bit 18 - Serial Peripheral Interface 1 Module Stop"]
769 #[inline(always)]
770 pub fn mstpb18(&self) -> MSTPB18_R {
771 MSTPB18_R::new(((self.bits >> 18) & 1) != 0)
772 }
773 #[doc = "Bit 19 - Serial Peripheral Interface 0 Module Stop"]
774 #[inline(always)]
775 pub fn mstpb19(&self) -> MSTPB19_R {
776 MSTPB19_R::new(((self.bits >> 19) & 1) != 0)
777 }
778 #[doc = "Bit 22 - Serial Communication Interface 9 Module Stop"]
779 #[inline(always)]
780 pub fn mstpb22(&self) -> MSTPB22_R {
781 MSTPB22_R::new(((self.bits >> 22) & 1) != 0)
782 }
783 #[doc = "Bit 27 - Serial Communication Interface 4 Module Stop"]
784 #[inline(always)]
785 pub fn mstpb27(&self) -> MSTPB27_R {
786 MSTPB27_R::new(((self.bits >> 27) & 1) != 0)
787 }
788 #[doc = "Bit 28 - Serial Communication Interface 3 Module Stop"]
789 #[inline(always)]
790 pub fn mstpb28(&self) -> MSTPB28_R {
791 MSTPB28_R::new(((self.bits >> 28) & 1) != 0)
792 }
793 #[doc = "Bit 29 - Serial Communication Interface 2 Module Stop"]
794 #[inline(always)]
795 pub fn mstpb29(&self) -> MSTPB29_R {
796 MSTPB29_R::new(((self.bits >> 29) & 1) != 0)
797 }
798 #[doc = "Bit 30 - Serial Communication Interface 1 Module Stop"]
799 #[inline(always)]
800 pub fn mstpb30(&self) -> MSTPB30_R {
801 MSTPB30_R::new(((self.bits >> 30) & 1) != 0)
802 }
803 #[doc = "Bit 31 - Serial Communication Interface 0 Module Stop"]
804 #[inline(always)]
805 pub fn mstpb31(&self) -> MSTPB31_R {
806 MSTPB31_R::new(((self.bits >> 31) & 1) != 0)
807 }
808}
809impl W {
810 #[doc = "Bit 2 - Controller Area Network Module Stop"]
811 #[inline(always)]
812 #[must_use]
813 pub fn mstpb2(&mut self) -> MSTPB2_W<2> {
814 MSTPB2_W::new(self)
815 }
816 #[doc = "Bit 6 - Queued Serial Peripheral Interface Module Stop"]
817 #[inline(always)]
818 #[must_use]
819 pub fn mstpb6(&mut self) -> MSTPB6_W<6> {
820 MSTPB6_W::new(self)
821 }
822 #[doc = "Bit 7 - I2C Bus Interface 2 Module Stop"]
823 #[inline(always)]
824 #[must_use]
825 pub fn mstpb7(&mut self) -> MSTPB7_W<7> {
826 MSTPB7_W::new(self)
827 }
828 #[doc = "Bit 8 - I2C Bus Interface 1 Module Stop"]
829 #[inline(always)]
830 #[must_use]
831 pub fn mstpb8(&mut self) -> MSTPB8_W<8> {
832 MSTPB8_W::new(self)
833 }
834 #[doc = "Bit 9 - I2C Bus Interface 0 Module Stop"]
835 #[inline(always)]
836 #[must_use]
837 pub fn mstpb9(&mut self) -> MSTPB9_W<9> {
838 MSTPB9_W::new(self)
839 }
840 #[doc = "Bit 11 - Universal Serial Bus 2.0 FS Interface Module Stop"]
841 #[inline(always)]
842 #[must_use]
843 pub fn mstpb11(&mut self) -> MSTPB11_W<11> {
844 MSTPB11_W::new(self)
845 }
846 #[doc = "Bit 18 - Serial Peripheral Interface 1 Module Stop"]
847 #[inline(always)]
848 #[must_use]
849 pub fn mstpb18(&mut self) -> MSTPB18_W<18> {
850 MSTPB18_W::new(self)
851 }
852 #[doc = "Bit 19 - Serial Peripheral Interface 0 Module Stop"]
853 #[inline(always)]
854 #[must_use]
855 pub fn mstpb19(&mut self) -> MSTPB19_W<19> {
856 MSTPB19_W::new(self)
857 }
858 #[doc = "Bit 22 - Serial Communication Interface 9 Module Stop"]
859 #[inline(always)]
860 #[must_use]
861 pub fn mstpb22(&mut self) -> MSTPB22_W<22> {
862 MSTPB22_W::new(self)
863 }
864 #[doc = "Bit 27 - Serial Communication Interface 4 Module Stop"]
865 #[inline(always)]
866 #[must_use]
867 pub fn mstpb27(&mut self) -> MSTPB27_W<27> {
868 MSTPB27_W::new(self)
869 }
870 #[doc = "Bit 28 - Serial Communication Interface 3 Module Stop"]
871 #[inline(always)]
872 #[must_use]
873 pub fn mstpb28(&mut self) -> MSTPB28_W<28> {
874 MSTPB28_W::new(self)
875 }
876 #[doc = "Bit 29 - Serial Communication Interface 2 Module Stop"]
877 #[inline(always)]
878 #[must_use]
879 pub fn mstpb29(&mut self) -> MSTPB29_W<29> {
880 MSTPB29_W::new(self)
881 }
882 #[doc = "Bit 30 - Serial Communication Interface 1 Module Stop"]
883 #[inline(always)]
884 #[must_use]
885 pub fn mstpb30(&mut self) -> MSTPB30_W<30> {
886 MSTPB30_W::new(self)
887 }
888 #[doc = "Bit 31 - Serial Communication Interface 0 Module Stop"]
889 #[inline(always)]
890 #[must_use]
891 pub fn mstpb31(&mut self) -> MSTPB31_W<31> {
892 MSTPB31_W::new(self)
893 }
894 #[doc = "Writes raw bits to the register."]
895 #[inline(always)]
896 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
897 self.0.bits(bits);
898 self
899 }
900}
901#[doc = "Module Stop Control Register B\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [mstpcrb](index.html) module"]
902pub struct MSTPCRB_SPEC;
903impl crate::RegisterSpec for MSTPCRB_SPEC {
904 type Ux = u32;
905}
906#[doc = "`read()` method returns [mstpcrb::R](R) reader structure"]
907impl crate::Readable for MSTPCRB_SPEC {
908 type Reader = R;
909}
910#[doc = "`write(|w| ..)` method takes [mstpcrb::W](W) writer structure"]
911impl crate::Writable for MSTPCRB_SPEC {
912 type Writer = W;
913 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
914 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
915}
916#[doc = "`reset()` method sets MSTPCRB to value 0xffff_ffff"]
917impl crate::Resettable for MSTPCRB_SPEC {
918 const RESET_VALUE: Self::Ux = 0xffff_ffff;
919}