ra6t1/system/
opccr.rs

1#[doc = "Register `OPCCR` reader"]
2pub struct R(crate::R<OPCCR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<OPCCR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<OPCCR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<OPCCR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `OPCCR` writer"]
17pub struct W(crate::W<OPCCR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<OPCCR_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<OPCCR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<OPCCR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `OPCM` reader - Operating Power Control Mode Select"]
38pub type OPCM_R = crate::FieldReader<u8, OPCM_A>;
39#[doc = "Operating Power Control Mode Select\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41#[repr(u8)]
42pub enum OPCM_A {
43    #[doc = "0: High-speed mode"]
44    _00 = 0,
45    #[doc = "1: Prohibited"]
46    _01 = 1,
47    #[doc = "2: Prohibited"]
48    _10 = 2,
49    #[doc = "3: Low-speed mode"]
50    _11 = 3,
51}
52impl From<OPCM_A> for u8 {
53    #[inline(always)]
54    fn from(variant: OPCM_A) -> Self {
55        variant as _
56    }
57}
58impl OPCM_R {
59    #[doc = "Get enumerated values variant"]
60    #[inline(always)]
61    pub fn variant(&self) -> Option<OPCM_A> {
62        match self.bits {
63            0 => Some(OPCM_A::_00),
64            1 => Some(OPCM_A::_01),
65            2 => Some(OPCM_A::_10),
66            3 => Some(OPCM_A::_11),
67            _ => None,
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 == OPCM_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 == OPCM_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 == OPCM_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 == OPCM_A::_11
89    }
90}
91#[doc = "Field `OPCM` writer - Operating Power Control Mode Select"]
92pub type OPCM_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u8, OPCCR_SPEC, u8, OPCM_A, 2, O>;
93impl<'a, const O: u8> OPCM_W<'a, O> {
94    #[doc = "High-speed mode"]
95    #[inline(always)]
96    pub fn _00(self) -> &'a mut W {
97        self.variant(OPCM_A::_00)
98    }
99    #[doc = "Prohibited"]
100    #[inline(always)]
101    pub fn _01(self) -> &'a mut W {
102        self.variant(OPCM_A::_01)
103    }
104    #[doc = "Prohibited"]
105    #[inline(always)]
106    pub fn _10(self) -> &'a mut W {
107        self.variant(OPCM_A::_10)
108    }
109    #[doc = "Low-speed mode"]
110    #[inline(always)]
111    pub fn _11(self) -> &'a mut W {
112        self.variant(OPCM_A::_11)
113    }
114}
115#[doc = "Field `OPCMTSF` reader - Operating Power Control Mode Transition Status Flag"]
116pub type OPCMTSF_R = crate::BitReader<OPCMTSF_A>;
117#[doc = "Operating Power Control Mode Transition Status Flag\n\nValue on reset: 0"]
118#[derive(Clone, Copy, Debug, PartialEq, Eq)]
119pub enum OPCMTSF_A {
120    #[doc = "0: Transition completed"]
121    _0 = 0,
122    #[doc = "1: During transition"]
123    _1 = 1,
124}
125impl From<OPCMTSF_A> for bool {
126    #[inline(always)]
127    fn from(variant: OPCMTSF_A) -> Self {
128        variant as u8 != 0
129    }
130}
131impl OPCMTSF_R {
132    #[doc = "Get enumerated values variant"]
133    #[inline(always)]
134    pub fn variant(&self) -> OPCMTSF_A {
135        match self.bits {
136            false => OPCMTSF_A::_0,
137            true => OPCMTSF_A::_1,
138        }
139    }
140    #[doc = "Checks if the value of the field is `_0`"]
141    #[inline(always)]
142    pub fn is_0(&self) -> bool {
143        *self == OPCMTSF_A::_0
144    }
145    #[doc = "Checks if the value of the field is `_1`"]
146    #[inline(always)]
147    pub fn is_1(&self) -> bool {
148        *self == OPCMTSF_A::_1
149    }
150}
151impl R {
152    #[doc = "Bits 0:1 - Operating Power Control Mode Select"]
153    #[inline(always)]
154    pub fn opcm(&self) -> OPCM_R {
155        OPCM_R::new(self.bits & 3)
156    }
157    #[doc = "Bit 4 - Operating Power Control Mode Transition Status Flag"]
158    #[inline(always)]
159    pub fn opcmtsf(&self) -> OPCMTSF_R {
160        OPCMTSF_R::new(((self.bits >> 4) & 1) != 0)
161    }
162}
163impl W {
164    #[doc = "Bits 0:1 - Operating Power Control Mode Select"]
165    #[inline(always)]
166    #[must_use]
167    pub fn opcm(&mut self) -> OPCM_W<0> {
168        OPCM_W::new(self)
169    }
170    #[doc = "Writes raw bits to the register."]
171    #[inline(always)]
172    pub unsafe fn bits(&mut self, bits: u8) -> &mut Self {
173        self.0.bits(bits);
174        self
175    }
176}
177#[doc = "Operating Power 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 [opccr](index.html) module"]
178pub struct OPCCR_SPEC;
179impl crate::RegisterSpec for OPCCR_SPEC {
180    type Ux = u8;
181}
182#[doc = "`read()` method returns [opccr::R](R) reader structure"]
183impl crate::Readable for OPCCR_SPEC {
184    type Reader = R;
185}
186#[doc = "`write(|w| ..)` method takes [opccr::W](W) writer structure"]
187impl crate::Writable for OPCCR_SPEC {
188    type Writer = W;
189    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
190    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
191}
192#[doc = "`reset()` method sets OPCCR to value 0"]
193impl crate::Resettable for OPCCR_SPEC {
194    const RESET_VALUE: Self::Ux = 0;
195}