ra4m2/sysc/
dpfsar.rs

1#[doc = "Register `DPFSAR` reader"]
2pub struct R(crate::R<DPFSAR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<DPFSAR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<DPFSAR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<DPFSAR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `DPFSAR` writer"]
17pub struct W(crate::W<DPFSAR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<DPFSAR_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<DPFSAR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<DPFSAR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `DPFSA00` reader - Deep Standby Interrupt Factor Security Attribute bit 0"]
38pub type DPFSA00_R = crate::BitReader<DPFSA00_A>;
39#[doc = "Deep Standby Interrupt Factor Security Attribute bit 0\n\nValue on reset: 1"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum DPFSA00_A {
42    #[doc = "0: Secure"]
43    _0 = 0,
44    #[doc = "1: Non Secure"]
45    _1 = 1,
46}
47impl From<DPFSA00_A> for bool {
48    #[inline(always)]
49    fn from(variant: DPFSA00_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl DPFSA00_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> DPFSA00_A {
57        match self.bits {
58            false => DPFSA00_A::_0,
59            true => DPFSA00_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 == DPFSA00_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 == DPFSA00_A::_1
71    }
72}
73#[doc = "Field `DPFSA00` writer - Deep Standby Interrupt Factor Security Attribute bit 0"]
74pub type DPFSA00_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA00_A, O>;
75impl<'a, const O: u8> DPFSA00_W<'a, O> {
76    #[doc = "Secure"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(DPFSA00_A::_0)
80    }
81    #[doc = "Non Secure"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(DPFSA00_A::_1)
85    }
86}
87#[doc = "Field `DPFSA01` reader - Deep Standby Interrupt Factor Security Attribute bit 1"]
88pub type DPFSA01_R = crate::BitReader<DPFSA01_A>;
89#[doc = "Deep Standby Interrupt Factor Security Attribute bit 1\n\nValue on reset: 1"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum DPFSA01_A {
92    #[doc = "0: Secure"]
93    _0 = 0,
94    #[doc = "1: Non Secure"]
95    _1 = 1,
96}
97impl From<DPFSA01_A> for bool {
98    #[inline(always)]
99    fn from(variant: DPFSA01_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl DPFSA01_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> DPFSA01_A {
107        match self.bits {
108            false => DPFSA01_A::_0,
109            true => DPFSA01_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 == DPFSA01_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 == DPFSA01_A::_1
121    }
122}
123#[doc = "Field `DPFSA01` writer - Deep Standby Interrupt Factor Security Attribute bit 1"]
124pub type DPFSA01_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA01_A, O>;
125impl<'a, const O: u8> DPFSA01_W<'a, O> {
126    #[doc = "Secure"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(DPFSA01_A::_0)
130    }
131    #[doc = "Non Secure"]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(DPFSA01_A::_1)
135    }
136}
137#[doc = "Field `DPFSA04` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
138pub type DPFSA04_R = crate::BitReader<DPFSA04_A>;
139#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum DPFSA04_A {
142    #[doc = "0: Secure"]
143    _0 = 0,
144    #[doc = "1: Non Secure"]
145    _1 = 1,
146}
147impl From<DPFSA04_A> for bool {
148    #[inline(always)]
149    fn from(variant: DPFSA04_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl DPFSA04_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> DPFSA04_A {
157        match self.bits {
158            false => DPFSA04_A::_0,
159            true => DPFSA04_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 == DPFSA04_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 == DPFSA04_A::_1
171    }
172}
173#[doc = "Field `DPFSA04` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
174pub type DPFSA04_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA04_A, O>;
175impl<'a, const O: u8> DPFSA04_W<'a, O> {
176    #[doc = "Secure"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(DPFSA04_A::_0)
180    }
181    #[doc = "Non Secure"]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(DPFSA04_A::_1)
185    }
186}
187#[doc = "Field `DPFSA05` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
188pub type DPFSA05_R = crate::BitReader<DPFSA05_A>;
189#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum DPFSA05_A {
192    #[doc = "0: Secure"]
193    _0 = 0,
194    #[doc = "1: Non Secure"]
195    _1 = 1,
196}
197impl From<DPFSA05_A> for bool {
198    #[inline(always)]
199    fn from(variant: DPFSA05_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl DPFSA05_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> DPFSA05_A {
207        match self.bits {
208            false => DPFSA05_A::_0,
209            true => DPFSA05_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 == DPFSA05_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 == DPFSA05_A::_1
221    }
222}
223#[doc = "Field `DPFSA05` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
224pub type DPFSA05_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA05_A, O>;
225impl<'a, const O: u8> DPFSA05_W<'a, O> {
226    #[doc = "Secure"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(DPFSA05_A::_0)
230    }
231    #[doc = "Non Secure"]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(DPFSA05_A::_1)
235    }
236}
237#[doc = "Field `DPFSA06` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
238pub type DPFSA06_R = crate::BitReader<DPFSA06_A>;
239#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum DPFSA06_A {
242    #[doc = "0: Secure"]
243    _0 = 0,
244    #[doc = "1: Non Secure"]
245    _1 = 1,
246}
247impl From<DPFSA06_A> for bool {
248    #[inline(always)]
249    fn from(variant: DPFSA06_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl DPFSA06_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> DPFSA06_A {
257        match self.bits {
258            false => DPFSA06_A::_0,
259            true => DPFSA06_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 == DPFSA06_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 == DPFSA06_A::_1
271    }
272}
273#[doc = "Field `DPFSA06` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
274pub type DPFSA06_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA06_A, O>;
275impl<'a, const O: u8> DPFSA06_W<'a, O> {
276    #[doc = "Secure"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(DPFSA06_A::_0)
280    }
281    #[doc = "Non Secure"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(DPFSA06_A::_1)
285    }
286}
287#[doc = "Field `DPFSA07` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
288pub type DPFSA07_R = crate::BitReader<DPFSA07_A>;
289#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum DPFSA07_A {
292    #[doc = "0: Secure"]
293    _0 = 0,
294    #[doc = "1: Non Secure"]
295    _1 = 1,
296}
297impl From<DPFSA07_A> for bool {
298    #[inline(always)]
299    fn from(variant: DPFSA07_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl DPFSA07_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> DPFSA07_A {
307        match self.bits {
308            false => DPFSA07_A::_0,
309            true => DPFSA07_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 == DPFSA07_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 == DPFSA07_A::_1
321    }
322}
323#[doc = "Field `DPFSA07` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
324pub type DPFSA07_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA07_A, O>;
325impl<'a, const O: u8> DPFSA07_W<'a, O> {
326    #[doc = "Secure"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(DPFSA07_A::_0)
330    }
331    #[doc = "Non Secure"]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(DPFSA07_A::_1)
335    }
336}
337#[doc = "Field `DPFSA08` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
338pub type DPFSA08_R = crate::BitReader<DPFSA08_A>;
339#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum DPFSA08_A {
342    #[doc = "0: Secure"]
343    _0 = 0,
344    #[doc = "1: Non Secure"]
345    _1 = 1,
346}
347impl From<DPFSA08_A> for bool {
348    #[inline(always)]
349    fn from(variant: DPFSA08_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl DPFSA08_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> DPFSA08_A {
357        match self.bits {
358            false => DPFSA08_A::_0,
359            true => DPFSA08_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 == DPFSA08_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 == DPFSA08_A::_1
371    }
372}
373#[doc = "Field `DPFSA08` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
374pub type DPFSA08_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA08_A, O>;
375impl<'a, const O: u8> DPFSA08_W<'a, O> {
376    #[doc = "Secure"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(DPFSA08_A::_0)
380    }
381    #[doc = "Non Secure"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(DPFSA08_A::_1)
385    }
386}
387#[doc = "Field `DPFSA09` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
388pub type DPFSA09_R = crate::BitReader<DPFSA09_A>;
389#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum DPFSA09_A {
392    #[doc = "0: Secure"]
393    _0 = 0,
394    #[doc = "1: Non Secure"]
395    _1 = 1,
396}
397impl From<DPFSA09_A> for bool {
398    #[inline(always)]
399    fn from(variant: DPFSA09_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl DPFSA09_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> DPFSA09_A {
407        match self.bits {
408            false => DPFSA09_A::_0,
409            true => DPFSA09_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 == DPFSA09_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 == DPFSA09_A::_1
421    }
422}
423#[doc = "Field `DPFSA09` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
424pub type DPFSA09_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA09_A, O>;
425impl<'a, const O: u8> DPFSA09_W<'a, O> {
426    #[doc = "Secure"]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(DPFSA09_A::_0)
430    }
431    #[doc = "Non Secure"]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(DPFSA09_A::_1)
435    }
436}
437#[doc = "Field `DPFSA10` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
438pub type DPFSA10_R = crate::BitReader<DPFSA10_A>;
439#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum DPFSA10_A {
442    #[doc = "0: Secure"]
443    _0 = 0,
444    #[doc = "1: Non Secure"]
445    _1 = 1,
446}
447impl From<DPFSA10_A> for bool {
448    #[inline(always)]
449    fn from(variant: DPFSA10_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl DPFSA10_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> DPFSA10_A {
457        match self.bits {
458            false => DPFSA10_A::_0,
459            true => DPFSA10_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 == DPFSA10_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 == DPFSA10_A::_1
471    }
472}
473#[doc = "Field `DPFSA10` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
474pub type DPFSA10_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA10_A, O>;
475impl<'a, const O: u8> DPFSA10_W<'a, O> {
476    #[doc = "Secure"]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(DPFSA10_A::_0)
480    }
481    #[doc = "Non Secure"]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(DPFSA10_A::_1)
485    }
486}
487#[doc = "Field `DPFSA11` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
488pub type DPFSA11_R = crate::BitReader<DPFSA11_A>;
489#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum DPFSA11_A {
492    #[doc = "0: Secure"]
493    _0 = 0,
494    #[doc = "1: Non Secure"]
495    _1 = 1,
496}
497impl From<DPFSA11_A> for bool {
498    #[inline(always)]
499    fn from(variant: DPFSA11_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl DPFSA11_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> DPFSA11_A {
507        match self.bits {
508            false => DPFSA11_A::_0,
509            true => DPFSA11_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 == DPFSA11_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 == DPFSA11_A::_1
521    }
522}
523#[doc = "Field `DPFSA11` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
524pub type DPFSA11_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA11_A, O>;
525impl<'a, const O: u8> DPFSA11_W<'a, O> {
526    #[doc = "Secure"]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(DPFSA11_A::_0)
530    }
531    #[doc = "Non Secure"]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(DPFSA11_A::_1)
535    }
536}
537#[doc = "Field `DPFSA12` reader - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
538pub type DPFSA12_R = crate::BitReader<DPFSA12_A>;
539#[doc = "Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)\n\nValue on reset: 1"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum DPFSA12_A {
542    #[doc = "0: Secure"]
543    _0 = 0,
544    #[doc = "1: Non Secure"]
545    _1 = 1,
546}
547impl From<DPFSA12_A> for bool {
548    #[inline(always)]
549    fn from(variant: DPFSA12_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl DPFSA12_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> DPFSA12_A {
557        match self.bits {
558            false => DPFSA12_A::_0,
559            true => DPFSA12_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 == DPFSA12_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 == DPFSA12_A::_1
571    }
572}
573#[doc = "Field `DPFSA12` writer - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
574pub type DPFSA12_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA12_A, O>;
575impl<'a, const O: u8> DPFSA12_W<'a, O> {
576    #[doc = "Secure"]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(DPFSA12_A::_0)
580    }
581    #[doc = "Non Secure"]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(DPFSA12_A::_1)
585    }
586}
587#[doc = "Field `DPFSA14` reader - Deep Standby Interrupt Factor Security Attribute bit 14"]
588pub type DPFSA14_R = crate::BitReader<DPFSA14_A>;
589#[doc = "Deep Standby Interrupt Factor Security Attribute bit 14\n\nValue on reset: 1"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum DPFSA14_A {
592    #[doc = "0: Secure"]
593    _0 = 0,
594    #[doc = "1: Non Secure"]
595    _1 = 1,
596}
597impl From<DPFSA14_A> for bool {
598    #[inline(always)]
599    fn from(variant: DPFSA14_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl DPFSA14_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> DPFSA14_A {
607        match self.bits {
608            false => DPFSA14_A::_0,
609            true => DPFSA14_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 == DPFSA14_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 == DPFSA14_A::_1
621    }
622}
623#[doc = "Field `DPFSA14` writer - Deep Standby Interrupt Factor Security Attribute bit 14"]
624pub type DPFSA14_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA14_A, O>;
625impl<'a, const O: u8> DPFSA14_W<'a, O> {
626    #[doc = "Secure"]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(DPFSA14_A::_0)
630    }
631    #[doc = "Non Secure"]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(DPFSA14_A::_1)
635    }
636}
637#[doc = "Field `DPFSA15` reader - Deep Standby Interrupt Factor Security Attribute bit 15"]
638pub type DPFSA15_R = crate::BitReader<DPFSA15_A>;
639#[doc = "Deep Standby Interrupt Factor Security Attribute bit 15\n\nValue on reset: 1"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum DPFSA15_A {
642    #[doc = "0: Secure"]
643    _0 = 0,
644    #[doc = "1: Non Secure"]
645    _1 = 1,
646}
647impl From<DPFSA15_A> for bool {
648    #[inline(always)]
649    fn from(variant: DPFSA15_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl DPFSA15_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> DPFSA15_A {
657        match self.bits {
658            false => DPFSA15_A::_0,
659            true => DPFSA15_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 == DPFSA15_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 == DPFSA15_A::_1
671    }
672}
673#[doc = "Field `DPFSA15` writer - Deep Standby Interrupt Factor Security Attribute bit 15"]
674pub type DPFSA15_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA15_A, O>;
675impl<'a, const O: u8> DPFSA15_W<'a, O> {
676    #[doc = "Secure"]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(DPFSA15_A::_0)
680    }
681    #[doc = "Non Secure"]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(DPFSA15_A::_1)
685    }
686}
687#[doc = "Field `DPFSA16` reader - Deep Standby Interrupt Factor Security Attribute bit 16"]
688pub type DPFSA16_R = crate::BitReader<DPFSA16_A>;
689#[doc = "Deep Standby Interrupt Factor Security Attribute bit 16\n\nValue on reset: 1"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum DPFSA16_A {
692    #[doc = "0: Secure"]
693    _0 = 0,
694    #[doc = "1: Non Secure"]
695    _1 = 1,
696}
697impl From<DPFSA16_A> for bool {
698    #[inline(always)]
699    fn from(variant: DPFSA16_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl DPFSA16_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> DPFSA16_A {
707        match self.bits {
708            false => DPFSA16_A::_0,
709            true => DPFSA16_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 == DPFSA16_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 == DPFSA16_A::_1
721    }
722}
723#[doc = "Field `DPFSA16` writer - Deep Standby Interrupt Factor Security Attribute bit 16"]
724pub type DPFSA16_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA16_A, O>;
725impl<'a, const O: u8> DPFSA16_W<'a, O> {
726    #[doc = "Secure"]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(DPFSA16_A::_0)
730    }
731    #[doc = "Non Secure"]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(DPFSA16_A::_1)
735    }
736}
737#[doc = "Field `DPFSA17` reader - Deep Standby Interrupt Factor Security Attribute bit 17"]
738pub type DPFSA17_R = crate::BitReader<DPFSA17_A>;
739#[doc = "Deep Standby Interrupt Factor Security Attribute bit 17\n\nValue on reset: 1"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum DPFSA17_A {
742    #[doc = "0: Secure"]
743    _0 = 0,
744    #[doc = "1: Non Secure"]
745    _1 = 1,
746}
747impl From<DPFSA17_A> for bool {
748    #[inline(always)]
749    fn from(variant: DPFSA17_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl DPFSA17_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> DPFSA17_A {
757        match self.bits {
758            false => DPFSA17_A::_0,
759            true => DPFSA17_A::_1,
760        }
761    }
762    #[doc = "Checks if the value of the field is `_0`"]
763    #[inline(always)]
764    pub fn is_0(&self) -> bool {
765        *self == DPFSA17_A::_0
766    }
767    #[doc = "Checks if the value of the field is `_1`"]
768    #[inline(always)]
769    pub fn is_1(&self) -> bool {
770        *self == DPFSA17_A::_1
771    }
772}
773#[doc = "Field `DPFSA17` writer - Deep Standby Interrupt Factor Security Attribute bit 17"]
774pub type DPFSA17_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA17_A, O>;
775impl<'a, const O: u8> DPFSA17_W<'a, O> {
776    #[doc = "Secure"]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(DPFSA17_A::_0)
780    }
781    #[doc = "Non Secure"]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(DPFSA17_A::_1)
785    }
786}
787#[doc = "Field `DPFSA18` reader - Deep Standby Interrupt Factor Security Attribute bit 18"]
788pub type DPFSA18_R = crate::BitReader<DPFSA18_A>;
789#[doc = "Deep Standby Interrupt Factor Security Attribute bit 18\n\nValue on reset: 1"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum DPFSA18_A {
792    #[doc = "0: Secure"]
793    _0 = 0,
794    #[doc = "1: Non Secure"]
795    _1 = 1,
796}
797impl From<DPFSA18_A> for bool {
798    #[inline(always)]
799    fn from(variant: DPFSA18_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl DPFSA18_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> DPFSA18_A {
807        match self.bits {
808            false => DPFSA18_A::_0,
809            true => DPFSA18_A::_1,
810        }
811    }
812    #[doc = "Checks if the value of the field is `_0`"]
813    #[inline(always)]
814    pub fn is_0(&self) -> bool {
815        *self == DPFSA18_A::_0
816    }
817    #[doc = "Checks if the value of the field is `_1`"]
818    #[inline(always)]
819    pub fn is_1(&self) -> bool {
820        *self == DPFSA18_A::_1
821    }
822}
823#[doc = "Field `DPFSA18` writer - Deep Standby Interrupt Factor Security Attribute bit 18"]
824pub type DPFSA18_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA18_A, O>;
825impl<'a, const O: u8> DPFSA18_W<'a, O> {
826    #[doc = "Secure"]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(DPFSA18_A::_0)
830    }
831    #[doc = "Non Secure"]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(DPFSA18_A::_1)
835    }
836}
837#[doc = "Field `DPFSA19` reader - Deep Standby Interrupt Factor Security Attribute bit 19"]
838pub type DPFSA19_R = crate::BitReader<DPFSA19_A>;
839#[doc = "Deep Standby Interrupt Factor Security Attribute bit 19\n\nValue on reset: 1"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum DPFSA19_A {
842    #[doc = "0: Secure"]
843    _0 = 0,
844    #[doc = "1: Non Secure"]
845    _1 = 1,
846}
847impl From<DPFSA19_A> for bool {
848    #[inline(always)]
849    fn from(variant: DPFSA19_A) -> Self {
850        variant as u8 != 0
851    }
852}
853impl DPFSA19_R {
854    #[doc = "Get enumerated values variant"]
855    #[inline(always)]
856    pub fn variant(&self) -> DPFSA19_A {
857        match self.bits {
858            false => DPFSA19_A::_0,
859            true => DPFSA19_A::_1,
860        }
861    }
862    #[doc = "Checks if the value of the field is `_0`"]
863    #[inline(always)]
864    pub fn is_0(&self) -> bool {
865        *self == DPFSA19_A::_0
866    }
867    #[doc = "Checks if the value of the field is `_1`"]
868    #[inline(always)]
869    pub fn is_1(&self) -> bool {
870        *self == DPFSA19_A::_1
871    }
872}
873#[doc = "Field `DPFSA19` writer - Deep Standby Interrupt Factor Security Attribute bit 19"]
874pub type DPFSA19_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA19_A, O>;
875impl<'a, const O: u8> DPFSA19_W<'a, O> {
876    #[doc = "Secure"]
877    #[inline(always)]
878    pub fn _0(self) -> &'a mut W {
879        self.variant(DPFSA19_A::_0)
880    }
881    #[doc = "Non Secure"]
882    #[inline(always)]
883    pub fn _1(self) -> &'a mut W {
884        self.variant(DPFSA19_A::_1)
885    }
886}
887#[doc = "Field `DPFSA20` reader - Deep Standby Interrupt Factor Security Attribute bit 20"]
888pub type DPFSA20_R = crate::BitReader<DPFSA20_A>;
889#[doc = "Deep Standby Interrupt Factor Security Attribute bit 20\n\nValue on reset: 1"]
890#[derive(Clone, Copy, Debug, PartialEq, Eq)]
891pub enum DPFSA20_A {
892    #[doc = "0: Secure"]
893    _0 = 0,
894    #[doc = "1: Non Secure"]
895    _1 = 1,
896}
897impl From<DPFSA20_A> for bool {
898    #[inline(always)]
899    fn from(variant: DPFSA20_A) -> Self {
900        variant as u8 != 0
901    }
902}
903impl DPFSA20_R {
904    #[doc = "Get enumerated values variant"]
905    #[inline(always)]
906    pub fn variant(&self) -> DPFSA20_A {
907        match self.bits {
908            false => DPFSA20_A::_0,
909            true => DPFSA20_A::_1,
910        }
911    }
912    #[doc = "Checks if the value of the field is `_0`"]
913    #[inline(always)]
914    pub fn is_0(&self) -> bool {
915        *self == DPFSA20_A::_0
916    }
917    #[doc = "Checks if the value of the field is `_1`"]
918    #[inline(always)]
919    pub fn is_1(&self) -> bool {
920        *self == DPFSA20_A::_1
921    }
922}
923#[doc = "Field `DPFSA20` writer - Deep Standby Interrupt Factor Security Attribute bit 20"]
924pub type DPFSA20_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA20_A, O>;
925impl<'a, const O: u8> DPFSA20_W<'a, O> {
926    #[doc = "Secure"]
927    #[inline(always)]
928    pub fn _0(self) -> &'a mut W {
929        self.variant(DPFSA20_A::_0)
930    }
931    #[doc = "Non Secure"]
932    #[inline(always)]
933    pub fn _1(self) -> &'a mut W {
934        self.variant(DPFSA20_A::_1)
935    }
936}
937#[doc = "Field `DPFSA24` reader - Deep Standby Interrupt Factor Security Attribute bit 24"]
938pub type DPFSA24_R = crate::BitReader<DPFSA24_A>;
939#[doc = "Deep Standby Interrupt Factor Security Attribute bit 24\n\nValue on reset: 1"]
940#[derive(Clone, Copy, Debug, PartialEq, Eq)]
941pub enum DPFSA24_A {
942    #[doc = "0: Secure"]
943    _0 = 0,
944    #[doc = "1: Non Secure"]
945    _1 = 1,
946}
947impl From<DPFSA24_A> for bool {
948    #[inline(always)]
949    fn from(variant: DPFSA24_A) -> Self {
950        variant as u8 != 0
951    }
952}
953impl DPFSA24_R {
954    #[doc = "Get enumerated values variant"]
955    #[inline(always)]
956    pub fn variant(&self) -> DPFSA24_A {
957        match self.bits {
958            false => DPFSA24_A::_0,
959            true => DPFSA24_A::_1,
960        }
961    }
962    #[doc = "Checks if the value of the field is `_0`"]
963    #[inline(always)]
964    pub fn is_0(&self) -> bool {
965        *self == DPFSA24_A::_0
966    }
967    #[doc = "Checks if the value of the field is `_1`"]
968    #[inline(always)]
969    pub fn is_1(&self) -> bool {
970        *self == DPFSA24_A::_1
971    }
972}
973#[doc = "Field `DPFSA24` writer - Deep Standby Interrupt Factor Security Attribute bit 24"]
974pub type DPFSA24_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA24_A, O>;
975impl<'a, const O: u8> DPFSA24_W<'a, O> {
976    #[doc = "Secure"]
977    #[inline(always)]
978    pub fn _0(self) -> &'a mut W {
979        self.variant(DPFSA24_A::_0)
980    }
981    #[doc = "Non Secure"]
982    #[inline(always)]
983    pub fn _1(self) -> &'a mut W {
984        self.variant(DPFSA24_A::_1)
985    }
986}
987#[doc = "Field `DPFSA26` reader - Deep Standby Interrupt Factor Security Attribute bit 26"]
988pub type DPFSA26_R = crate::BitReader<DPFSA26_A>;
989#[doc = "Deep Standby Interrupt Factor Security Attribute bit 26\n\nValue on reset: 1"]
990#[derive(Clone, Copy, Debug, PartialEq, Eq)]
991pub enum DPFSA26_A {
992    #[doc = "0: Secure"]
993    _0 = 0,
994    #[doc = "1: Non Secure"]
995    _1 = 1,
996}
997impl From<DPFSA26_A> for bool {
998    #[inline(always)]
999    fn from(variant: DPFSA26_A) -> Self {
1000        variant as u8 != 0
1001    }
1002}
1003impl DPFSA26_R {
1004    #[doc = "Get enumerated values variant"]
1005    #[inline(always)]
1006    pub fn variant(&self) -> DPFSA26_A {
1007        match self.bits {
1008            false => DPFSA26_A::_0,
1009            true => DPFSA26_A::_1,
1010        }
1011    }
1012    #[doc = "Checks if the value of the field is `_0`"]
1013    #[inline(always)]
1014    pub fn is_0(&self) -> bool {
1015        *self == DPFSA26_A::_0
1016    }
1017    #[doc = "Checks if the value of the field is `_1`"]
1018    #[inline(always)]
1019    pub fn is_1(&self) -> bool {
1020        *self == DPFSA26_A::_1
1021    }
1022}
1023#[doc = "Field `DPFSA26` writer - Deep Standby Interrupt Factor Security Attribute bit 26"]
1024pub type DPFSA26_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA26_A, O>;
1025impl<'a, const O: u8> DPFSA26_W<'a, O> {
1026    #[doc = "Secure"]
1027    #[inline(always)]
1028    pub fn _0(self) -> &'a mut W {
1029        self.variant(DPFSA26_A::_0)
1030    }
1031    #[doc = "Non Secure"]
1032    #[inline(always)]
1033    pub fn _1(self) -> &'a mut W {
1034        self.variant(DPFSA26_A::_1)
1035    }
1036}
1037#[doc = "Field `DPFSA27` reader - Deep Standby Interrupt Factor Security Attribute bit 27"]
1038pub type DPFSA27_R = crate::BitReader<DPFSA27_A>;
1039#[doc = "Deep Standby Interrupt Factor Security Attribute bit 27\n\nValue on reset: 1"]
1040#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1041pub enum DPFSA27_A {
1042    #[doc = "0: Secure"]
1043    _0 = 0,
1044    #[doc = "1: Non Secure"]
1045    _1 = 1,
1046}
1047impl From<DPFSA27_A> for bool {
1048    #[inline(always)]
1049    fn from(variant: DPFSA27_A) -> Self {
1050        variant as u8 != 0
1051    }
1052}
1053impl DPFSA27_R {
1054    #[doc = "Get enumerated values variant"]
1055    #[inline(always)]
1056    pub fn variant(&self) -> DPFSA27_A {
1057        match self.bits {
1058            false => DPFSA27_A::_0,
1059            true => DPFSA27_A::_1,
1060        }
1061    }
1062    #[doc = "Checks if the value of the field is `_0`"]
1063    #[inline(always)]
1064    pub fn is_0(&self) -> bool {
1065        *self == DPFSA27_A::_0
1066    }
1067    #[doc = "Checks if the value of the field is `_1`"]
1068    #[inline(always)]
1069    pub fn is_1(&self) -> bool {
1070        *self == DPFSA27_A::_1
1071    }
1072}
1073#[doc = "Field `DPFSA27` writer - Deep Standby Interrupt Factor Security Attribute bit 27"]
1074pub type DPFSA27_W<'a, const O: u8> = crate::BitWriter<'a, u32, DPFSAR_SPEC, DPFSA27_A, O>;
1075impl<'a, const O: u8> DPFSA27_W<'a, O> {
1076    #[doc = "Secure"]
1077    #[inline(always)]
1078    pub fn _0(self) -> &'a mut W {
1079        self.variant(DPFSA27_A::_0)
1080    }
1081    #[doc = "Non Secure"]
1082    #[inline(always)]
1083    pub fn _1(self) -> &'a mut W {
1084        self.variant(DPFSA27_A::_1)
1085    }
1086}
1087impl R {
1088    #[doc = "Bit 0 - Deep Standby Interrupt Factor Security Attribute bit 0"]
1089    #[inline(always)]
1090    pub fn dpfsa00(&self) -> DPFSA00_R {
1091        DPFSA00_R::new((self.bits & 1) != 0)
1092    }
1093    #[doc = "Bit 1 - Deep Standby Interrupt Factor Security Attribute bit 1"]
1094    #[inline(always)]
1095    pub fn dpfsa01(&self) -> DPFSA01_R {
1096        DPFSA01_R::new(((self.bits >> 1) & 1) != 0)
1097    }
1098    #[doc = "Bit 4 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1099    #[inline(always)]
1100    pub fn dpfsa04(&self) -> DPFSA04_R {
1101        DPFSA04_R::new(((self.bits >> 4) & 1) != 0)
1102    }
1103    #[doc = "Bit 5 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1104    #[inline(always)]
1105    pub fn dpfsa05(&self) -> DPFSA05_R {
1106        DPFSA05_R::new(((self.bits >> 5) & 1) != 0)
1107    }
1108    #[doc = "Bit 6 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1109    #[inline(always)]
1110    pub fn dpfsa06(&self) -> DPFSA06_R {
1111        DPFSA06_R::new(((self.bits >> 6) & 1) != 0)
1112    }
1113    #[doc = "Bit 7 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1114    #[inline(always)]
1115    pub fn dpfsa07(&self) -> DPFSA07_R {
1116        DPFSA07_R::new(((self.bits >> 7) & 1) != 0)
1117    }
1118    #[doc = "Bit 8 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1119    #[inline(always)]
1120    pub fn dpfsa08(&self) -> DPFSA08_R {
1121        DPFSA08_R::new(((self.bits >> 8) & 1) != 0)
1122    }
1123    #[doc = "Bit 9 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1124    #[inline(always)]
1125    pub fn dpfsa09(&self) -> DPFSA09_R {
1126        DPFSA09_R::new(((self.bits >> 9) & 1) != 0)
1127    }
1128    #[doc = "Bit 10 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1129    #[inline(always)]
1130    pub fn dpfsa10(&self) -> DPFSA10_R {
1131        DPFSA10_R::new(((self.bits >> 10) & 1) != 0)
1132    }
1133    #[doc = "Bit 11 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1134    #[inline(always)]
1135    pub fn dpfsa11(&self) -> DPFSA11_R {
1136        DPFSA11_R::new(((self.bits >> 11) & 1) != 0)
1137    }
1138    #[doc = "Bit 12 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1139    #[inline(always)]
1140    pub fn dpfsa12(&self) -> DPFSA12_R {
1141        DPFSA12_R::new(((self.bits >> 12) & 1) != 0)
1142    }
1143    #[doc = "Bit 14 - Deep Standby Interrupt Factor Security Attribute bit 14"]
1144    #[inline(always)]
1145    pub fn dpfsa14(&self) -> DPFSA14_R {
1146        DPFSA14_R::new(((self.bits >> 14) & 1) != 0)
1147    }
1148    #[doc = "Bit 15 - Deep Standby Interrupt Factor Security Attribute bit 15"]
1149    #[inline(always)]
1150    pub fn dpfsa15(&self) -> DPFSA15_R {
1151        DPFSA15_R::new(((self.bits >> 15) & 1) != 0)
1152    }
1153    #[doc = "Bit 16 - Deep Standby Interrupt Factor Security Attribute bit 16"]
1154    #[inline(always)]
1155    pub fn dpfsa16(&self) -> DPFSA16_R {
1156        DPFSA16_R::new(((self.bits >> 16) & 1) != 0)
1157    }
1158    #[doc = "Bit 17 - Deep Standby Interrupt Factor Security Attribute bit 17"]
1159    #[inline(always)]
1160    pub fn dpfsa17(&self) -> DPFSA17_R {
1161        DPFSA17_R::new(((self.bits >> 17) & 1) != 0)
1162    }
1163    #[doc = "Bit 18 - Deep Standby Interrupt Factor Security Attribute bit 18"]
1164    #[inline(always)]
1165    pub fn dpfsa18(&self) -> DPFSA18_R {
1166        DPFSA18_R::new(((self.bits >> 18) & 1) != 0)
1167    }
1168    #[doc = "Bit 19 - Deep Standby Interrupt Factor Security Attribute bit 19"]
1169    #[inline(always)]
1170    pub fn dpfsa19(&self) -> DPFSA19_R {
1171        DPFSA19_R::new(((self.bits >> 19) & 1) != 0)
1172    }
1173    #[doc = "Bit 20 - Deep Standby Interrupt Factor Security Attribute bit 20"]
1174    #[inline(always)]
1175    pub fn dpfsa20(&self) -> DPFSA20_R {
1176        DPFSA20_R::new(((self.bits >> 20) & 1) != 0)
1177    }
1178    #[doc = "Bit 24 - Deep Standby Interrupt Factor Security Attribute bit 24"]
1179    #[inline(always)]
1180    pub fn dpfsa24(&self) -> DPFSA24_R {
1181        DPFSA24_R::new(((self.bits >> 24) & 1) != 0)
1182    }
1183    #[doc = "Bit 26 - Deep Standby Interrupt Factor Security Attribute bit 26"]
1184    #[inline(always)]
1185    pub fn dpfsa26(&self) -> DPFSA26_R {
1186        DPFSA26_R::new(((self.bits >> 26) & 1) != 0)
1187    }
1188    #[doc = "Bit 27 - Deep Standby Interrupt Factor Security Attribute bit 27"]
1189    #[inline(always)]
1190    pub fn dpfsa27(&self) -> DPFSA27_R {
1191        DPFSA27_R::new(((self.bits >> 27) & 1) != 0)
1192    }
1193}
1194impl W {
1195    #[doc = "Bit 0 - Deep Standby Interrupt Factor Security Attribute bit 0"]
1196    #[inline(always)]
1197    #[must_use]
1198    pub fn dpfsa00(&mut self) -> DPFSA00_W<0> {
1199        DPFSA00_W::new(self)
1200    }
1201    #[doc = "Bit 1 - Deep Standby Interrupt Factor Security Attribute bit 1"]
1202    #[inline(always)]
1203    #[must_use]
1204    pub fn dpfsa01(&mut self) -> DPFSA01_W<1> {
1205        DPFSA01_W::new(self)
1206    }
1207    #[doc = "Bit 4 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1208    #[inline(always)]
1209    #[must_use]
1210    pub fn dpfsa04(&mut self) -> DPFSA04_W<4> {
1211        DPFSA04_W::new(self)
1212    }
1213    #[doc = "Bit 5 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1214    #[inline(always)]
1215    #[must_use]
1216    pub fn dpfsa05(&mut self) -> DPFSA05_W<5> {
1217        DPFSA05_W::new(self)
1218    }
1219    #[doc = "Bit 6 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1220    #[inline(always)]
1221    #[must_use]
1222    pub fn dpfsa06(&mut self) -> DPFSA06_W<6> {
1223        DPFSA06_W::new(self)
1224    }
1225    #[doc = "Bit 7 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1226    #[inline(always)]
1227    #[must_use]
1228    pub fn dpfsa07(&mut self) -> DPFSA07_W<7> {
1229        DPFSA07_W::new(self)
1230    }
1231    #[doc = "Bit 8 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1232    #[inline(always)]
1233    #[must_use]
1234    pub fn dpfsa08(&mut self) -> DPFSA08_W<8> {
1235        DPFSA08_W::new(self)
1236    }
1237    #[doc = "Bit 9 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1238    #[inline(always)]
1239    #[must_use]
1240    pub fn dpfsa09(&mut self) -> DPFSA09_W<9> {
1241        DPFSA09_W::new(self)
1242    }
1243    #[doc = "Bit 10 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1244    #[inline(always)]
1245    #[must_use]
1246    pub fn dpfsa10(&mut self) -> DPFSA10_W<10> {
1247        DPFSA10_W::new(self)
1248    }
1249    #[doc = "Bit 11 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1250    #[inline(always)]
1251    #[must_use]
1252    pub fn dpfsa11(&mut self) -> DPFSA11_W<11> {
1253        DPFSA11_W::new(self)
1254    }
1255    #[doc = "Bit 12 - Deep Standby Interrupt Factor Security Attribute bit n (n = 4 to 12)"]
1256    #[inline(always)]
1257    #[must_use]
1258    pub fn dpfsa12(&mut self) -> DPFSA12_W<12> {
1259        DPFSA12_W::new(self)
1260    }
1261    #[doc = "Bit 14 - Deep Standby Interrupt Factor Security Attribute bit 14"]
1262    #[inline(always)]
1263    #[must_use]
1264    pub fn dpfsa14(&mut self) -> DPFSA14_W<14> {
1265        DPFSA14_W::new(self)
1266    }
1267    #[doc = "Bit 15 - Deep Standby Interrupt Factor Security Attribute bit 15"]
1268    #[inline(always)]
1269    #[must_use]
1270    pub fn dpfsa15(&mut self) -> DPFSA15_W<15> {
1271        DPFSA15_W::new(self)
1272    }
1273    #[doc = "Bit 16 - Deep Standby Interrupt Factor Security Attribute bit 16"]
1274    #[inline(always)]
1275    #[must_use]
1276    pub fn dpfsa16(&mut self) -> DPFSA16_W<16> {
1277        DPFSA16_W::new(self)
1278    }
1279    #[doc = "Bit 17 - Deep Standby Interrupt Factor Security Attribute bit 17"]
1280    #[inline(always)]
1281    #[must_use]
1282    pub fn dpfsa17(&mut self) -> DPFSA17_W<17> {
1283        DPFSA17_W::new(self)
1284    }
1285    #[doc = "Bit 18 - Deep Standby Interrupt Factor Security Attribute bit 18"]
1286    #[inline(always)]
1287    #[must_use]
1288    pub fn dpfsa18(&mut self) -> DPFSA18_W<18> {
1289        DPFSA18_W::new(self)
1290    }
1291    #[doc = "Bit 19 - Deep Standby Interrupt Factor Security Attribute bit 19"]
1292    #[inline(always)]
1293    #[must_use]
1294    pub fn dpfsa19(&mut self) -> DPFSA19_W<19> {
1295        DPFSA19_W::new(self)
1296    }
1297    #[doc = "Bit 20 - Deep Standby Interrupt Factor Security Attribute bit 20"]
1298    #[inline(always)]
1299    #[must_use]
1300    pub fn dpfsa20(&mut self) -> DPFSA20_W<20> {
1301        DPFSA20_W::new(self)
1302    }
1303    #[doc = "Bit 24 - Deep Standby Interrupt Factor Security Attribute bit 24"]
1304    #[inline(always)]
1305    #[must_use]
1306    pub fn dpfsa24(&mut self) -> DPFSA24_W<24> {
1307        DPFSA24_W::new(self)
1308    }
1309    #[doc = "Bit 26 - Deep Standby Interrupt Factor Security Attribute bit 26"]
1310    #[inline(always)]
1311    #[must_use]
1312    pub fn dpfsa26(&mut self) -> DPFSA26_W<26> {
1313        DPFSA26_W::new(self)
1314    }
1315    #[doc = "Bit 27 - Deep Standby Interrupt Factor Security Attribute bit 27"]
1316    #[inline(always)]
1317    #[must_use]
1318    pub fn dpfsa27(&mut self) -> DPFSA27_W<27> {
1319        DPFSA27_W::new(self)
1320    }
1321    #[doc = "Writes raw bits to the register."]
1322    #[inline(always)]
1323    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1324        self.0.bits(bits);
1325        self
1326    }
1327}
1328#[doc = "Deep Standby Interrupt Factor Security Attribution Register\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 [dpfsar](index.html) module"]
1329pub struct DPFSAR_SPEC;
1330impl crate::RegisterSpec for DPFSAR_SPEC {
1331    type Ux = u32;
1332}
1333#[doc = "`read()` method returns [dpfsar::R](R) reader structure"]
1334impl crate::Readable for DPFSAR_SPEC {
1335    type Reader = R;
1336}
1337#[doc = "`write(|w| ..)` method takes [dpfsar::W](W) writer structure"]
1338impl crate::Writable for DPFSAR_SPEC {
1339    type Writer = W;
1340    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1341    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1342}
1343#[doc = "`reset()` method sets DPFSAR to value 0xffff_ffff"]
1344impl crate::Resettable for DPFSAR_SPEC {
1345    const RESET_VALUE: Self::Ux = 0xffff_ffff;
1346}