ra2e1/sysc/
psmcr.rs

1#[doc = "Register `PSMCR` reader"]
2pub struct R(crate::R<PSMCR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<PSMCR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<PSMCR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<PSMCR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `PSMCR` writer"]
17pub struct W(crate::W<PSMCR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<PSMCR_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<PSMCR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<PSMCR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `PSMC` reader - Power Save Memory Control"]
38pub type PSMC_R = crate::FieldReader<u8, PSMC_A>;
39#[doc = "Power Save Memory Control\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41#[repr(u8)]
42pub enum PSMC_A {
43    #[doc = "0: All SRAMs are on in Software Standby mode"]
44    _00 = 0,
45    #[doc = "1: 8 KB SRAM (0x2000_4000 to 0x2000_5FFF) is on in Software Standby mode"]
46    _01 = 1,
47    #[doc = "2: Setting prohibited"]
48    _10 = 2,
49    #[doc = "3: Setting prohibited"]
50    _11 = 3,
51}
52impl From<PSMC_A> for u8 {
53    #[inline(always)]
54    fn from(variant: PSMC_A) -> Self {
55        variant as _
56    }
57}
58impl PSMC_R {
59    #[doc = "Get enumerated values variant"]
60    #[inline(always)]
61    pub fn variant(&self) -> PSMC_A {
62        match self.bits {
63            0 => PSMC_A::_00,
64            1 => PSMC_A::_01,
65            2 => PSMC_A::_10,
66            3 => PSMC_A::_11,
67            _ => unreachable!(),
68        }
69    }
70    #[doc = "Checks if the value of the field is `_00`"]
71    #[inline(always)]
72    pub fn is_00(&self) -> bool {
73        *self == PSMC_A::_00
74    }
75    #[doc = "Checks if the value of the field is `_01`"]
76    #[inline(always)]
77    pub fn is_01(&self) -> bool {
78        *self == PSMC_A::_01
79    }
80    #[doc = "Checks if the value of the field is `_10`"]
81    #[inline(always)]
82    pub fn is_10(&self) -> bool {
83        *self == PSMC_A::_10
84    }
85    #[doc = "Checks if the value of the field is `_11`"]
86    #[inline(always)]
87    pub fn is_11(&self) -> bool {
88        *self == PSMC_A::_11
89    }
90}
91#[doc = "Field `PSMC` writer - Power Save Memory Control"]
92pub type PSMC_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u8, PSMCR_SPEC, u8, PSMC_A, 2, O>;
93impl<'a, const O: u8> PSMC_W<'a, O> {
94    #[doc = "All SRAMs are on in Software Standby mode"]
95    #[inline(always)]
96    pub fn _00(self) -> &'a mut W {
97        self.variant(PSMC_A::_00)
98    }
99    #[doc = "8 KB SRAM (0x2000_4000 to 0x2000_5FFF) is on in Software Standby mode"]
100    #[inline(always)]
101    pub fn _01(self) -> &'a mut W {
102        self.variant(PSMC_A::_01)
103    }
104    #[doc = "Setting prohibited"]
105    #[inline(always)]
106    pub fn _10(self) -> &'a mut W {
107        self.variant(PSMC_A::_10)
108    }
109    #[doc = "Setting prohibited"]
110    #[inline(always)]
111    pub fn _11(self) -> &'a mut W {
112        self.variant(PSMC_A::_11)
113    }
114}
115impl R {
116    #[doc = "Bits 0:1 - Power Save Memory Control"]
117    #[inline(always)]
118    pub fn psmc(&self) -> PSMC_R {
119        PSMC_R::new(self.bits & 3)
120    }
121}
122impl W {
123    #[doc = "Bits 0:1 - Power Save Memory Control"]
124    #[inline(always)]
125    #[must_use]
126    pub fn psmc(&mut self) -> PSMC_W<0> {
127        PSMC_W::new(self)
128    }
129    #[doc = "Writes raw bits to the register."]
130    #[inline(always)]
131    pub unsafe fn bits(&mut self, bits: u8) -> &mut Self {
132        self.0.bits(bits);
133        self
134    }
135}
136#[doc = "Power Save Memory Control 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 [psmcr](index.html) module"]
137pub struct PSMCR_SPEC;
138impl crate::RegisterSpec for PSMCR_SPEC {
139    type Ux = u8;
140}
141#[doc = "`read()` method returns [psmcr::R](R) reader structure"]
142impl crate::Readable for PSMCR_SPEC {
143    type Reader = R;
144}
145#[doc = "`write(|w| ..)` method takes [psmcr::W](W) writer structure"]
146impl crate::Writable for PSMCR_SPEC {
147    type Writer = W;
148    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
149    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
150}
151#[doc = "`reset()` method sets PSMCR to value 0"]
152impl crate::Resettable for PSMCR_SPEC {
153    const RESET_VALUE: Self::Ux = 0;
154}