atsaml21e15b/oscctrl/
xoscctrl.rs

1#[doc = "Register `XOSCCTRL` reader"]
2pub struct R(crate::R<XOSCCTRL_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<XOSCCTRL_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<XOSCCTRL_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<XOSCCTRL_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `XOSCCTRL` writer"]
17pub struct W(crate::W<XOSCCTRL_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<XOSCCTRL_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<XOSCCTRL_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<XOSCCTRL_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `ENABLE` reader - Oscillator Enable"]
38pub type ENABLE_R = crate::BitReader<bool>;
39#[doc = "Field `ENABLE` writer - Oscillator Enable"]
40pub type ENABLE_W<'a, const O: u8> = crate::BitWriter<'a, u16, XOSCCTRL_SPEC, bool, O>;
41#[doc = "Field `XTALEN` reader - Crystal Oscillator Enable"]
42pub type XTALEN_R = crate::BitReader<bool>;
43#[doc = "Field `XTALEN` writer - Crystal Oscillator Enable"]
44pub type XTALEN_W<'a, const O: u8> = crate::BitWriter<'a, u16, XOSCCTRL_SPEC, bool, O>;
45#[doc = "Field `RUNSTDBY` reader - Run in Standby"]
46pub type RUNSTDBY_R = crate::BitReader<bool>;
47#[doc = "Field `RUNSTDBY` writer - Run in Standby"]
48pub type RUNSTDBY_W<'a, const O: u8> = crate::BitWriter<'a, u16, XOSCCTRL_SPEC, bool, O>;
49#[doc = "Field `ONDEMAND` reader - On Demand Control"]
50pub type ONDEMAND_R = crate::BitReader<bool>;
51#[doc = "Field `ONDEMAND` writer - On Demand Control"]
52pub type ONDEMAND_W<'a, const O: u8> = crate::BitWriter<'a, u16, XOSCCTRL_SPEC, bool, O>;
53#[doc = "Field `GAIN` reader - Oscillator Gain"]
54pub type GAIN_R = crate::FieldReader<u8, u8>;
55#[doc = "Field `GAIN` writer - Oscillator Gain"]
56pub type GAIN_W<'a, const O: u8> = crate::FieldWriter<'a, u16, XOSCCTRL_SPEC, u8, u8, 3, O>;
57#[doc = "Field `AMPGC` reader - Automatic Amplitude Gain Control"]
58pub type AMPGC_R = crate::BitReader<bool>;
59#[doc = "Field `AMPGC` writer - Automatic Amplitude Gain Control"]
60pub type AMPGC_W<'a, const O: u8> = crate::BitWriter<'a, u16, XOSCCTRL_SPEC, bool, O>;
61#[doc = "Field `STARTUP` reader - Start-Up Time"]
62pub type STARTUP_R = crate::FieldReader<u8, u8>;
63#[doc = "Field `STARTUP` writer - Start-Up Time"]
64pub type STARTUP_W<'a, const O: u8> = crate::FieldWriter<'a, u16, XOSCCTRL_SPEC, u8, u8, 4, O>;
65impl R {
66    #[doc = "Bit 1 - Oscillator Enable"]
67    #[inline(always)]
68    pub fn enable(&self) -> ENABLE_R {
69        ENABLE_R::new(((self.bits >> 1) & 1) != 0)
70    }
71    #[doc = "Bit 2 - Crystal Oscillator Enable"]
72    #[inline(always)]
73    pub fn xtalen(&self) -> XTALEN_R {
74        XTALEN_R::new(((self.bits >> 2) & 1) != 0)
75    }
76    #[doc = "Bit 6 - Run in Standby"]
77    #[inline(always)]
78    pub fn runstdby(&self) -> RUNSTDBY_R {
79        RUNSTDBY_R::new(((self.bits >> 6) & 1) != 0)
80    }
81    #[doc = "Bit 7 - On Demand Control"]
82    #[inline(always)]
83    pub fn ondemand(&self) -> ONDEMAND_R {
84        ONDEMAND_R::new(((self.bits >> 7) & 1) != 0)
85    }
86    #[doc = "Bits 8:10 - Oscillator Gain"]
87    #[inline(always)]
88    pub fn gain(&self) -> GAIN_R {
89        GAIN_R::new(((self.bits >> 8) & 7) as u8)
90    }
91    #[doc = "Bit 11 - Automatic Amplitude Gain Control"]
92    #[inline(always)]
93    pub fn ampgc(&self) -> AMPGC_R {
94        AMPGC_R::new(((self.bits >> 11) & 1) != 0)
95    }
96    #[doc = "Bits 12:15 - Start-Up Time"]
97    #[inline(always)]
98    pub fn startup(&self) -> STARTUP_R {
99        STARTUP_R::new(((self.bits >> 12) & 0x0f) as u8)
100    }
101}
102impl W {
103    #[doc = "Bit 1 - Oscillator Enable"]
104    #[inline(always)]
105    #[must_use]
106    pub fn enable(&mut self) -> ENABLE_W<1> {
107        ENABLE_W::new(self)
108    }
109    #[doc = "Bit 2 - Crystal Oscillator Enable"]
110    #[inline(always)]
111    #[must_use]
112    pub fn xtalen(&mut self) -> XTALEN_W<2> {
113        XTALEN_W::new(self)
114    }
115    #[doc = "Bit 6 - Run in Standby"]
116    #[inline(always)]
117    #[must_use]
118    pub fn runstdby(&mut self) -> RUNSTDBY_W<6> {
119        RUNSTDBY_W::new(self)
120    }
121    #[doc = "Bit 7 - On Demand Control"]
122    #[inline(always)]
123    #[must_use]
124    pub fn ondemand(&mut self) -> ONDEMAND_W<7> {
125        ONDEMAND_W::new(self)
126    }
127    #[doc = "Bits 8:10 - Oscillator Gain"]
128    #[inline(always)]
129    #[must_use]
130    pub fn gain(&mut self) -> GAIN_W<8> {
131        GAIN_W::new(self)
132    }
133    #[doc = "Bit 11 - Automatic Amplitude Gain Control"]
134    #[inline(always)]
135    #[must_use]
136    pub fn ampgc(&mut self) -> AMPGC_W<11> {
137        AMPGC_W::new(self)
138    }
139    #[doc = "Bits 12:15 - Start-Up Time"]
140    #[inline(always)]
141    #[must_use]
142    pub fn startup(&mut self) -> STARTUP_W<12> {
143        STARTUP_W::new(self)
144    }
145    #[doc = "Writes raw bits to the register."]
146    #[inline(always)]
147    pub unsafe fn bits(&mut self, bits: u16) -> &mut Self {
148        self.0.bits(bits);
149        self
150    }
151}
152#[doc = "External Multipurpose Crystal Oscillator (XOSC) Control\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 [xoscctrl](index.html) module"]
153pub struct XOSCCTRL_SPEC;
154impl crate::RegisterSpec for XOSCCTRL_SPEC {
155    type Ux = u16;
156}
157#[doc = "`read()` method returns [xoscctrl::R](R) reader structure"]
158impl crate::Readable for XOSCCTRL_SPEC {
159    type Reader = R;
160}
161#[doc = "`write(|w| ..)` method takes [xoscctrl::W](W) writer structure"]
162impl crate::Writable for XOSCCTRL_SPEC {
163    type Writer = W;
164    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
165    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
166}
167#[doc = "`reset()` method sets XOSCCTRL to value 0x80"]
168impl crate::Resettable for XOSCCTRL_SPEC {
169    const RESET_VALUE: Self::Ux = 0x80;
170}