atsam4lc2a_pac/bscif/
oscctrl32.rs1#[doc = "Register `OSCCTRL32` reader"]
2pub struct R(crate::R<OSCCTRL32_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<OSCCTRL32_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<OSCCTRL32_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<OSCCTRL32_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `OSCCTRL32` writer"]
17pub struct W(crate::W<OSCCTRL32_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<OSCCTRL32_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<OSCCTRL32_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<OSCCTRL32_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `OSC32EN` reader - 32 KHz Oscillator Enable"]
38pub type OSC32EN_R = crate::BitReader<bool>;
39#[doc = "Field `OSC32EN` writer - 32 KHz Oscillator Enable"]
40pub type OSC32EN_W<'a, const O: u8> = crate::BitWriter<'a, u32, OSCCTRL32_SPEC, bool, O>;
41#[doc = "Field `PINSEL` reader - Pins Select"]
42pub type PINSEL_R = crate::BitReader<bool>;
43#[doc = "Field `PINSEL` writer - Pins Select"]
44pub type PINSEL_W<'a, const O: u8> = crate::BitWriter<'a, u32, OSCCTRL32_SPEC, bool, O>;
45#[doc = "Field `EN32K` reader - 32 KHz output Enable"]
46pub type EN32K_R = crate::BitReader<bool>;
47#[doc = "Field `EN32K` writer - 32 KHz output Enable"]
48pub type EN32K_W<'a, const O: u8> = crate::BitWriter<'a, u32, OSCCTRL32_SPEC, bool, O>;
49#[doc = "Field `EN1K` reader - 1 KHz output Enable"]
50pub type EN1K_R = crate::BitReader<bool>;
51#[doc = "Field `EN1K` writer - 1 KHz output Enable"]
52pub type EN1K_W<'a, const O: u8> = crate::BitWriter<'a, u32, OSCCTRL32_SPEC, bool, O>;
53#[doc = "Field `MODE` reader - Oscillator Mode"]
54pub type MODE_R = crate::FieldReader<u8, u8>;
55#[doc = "Field `MODE` writer - Oscillator Mode"]
56pub type MODE_W<'a, const O: u8> = crate::FieldWriter<'a, u32, OSCCTRL32_SPEC, u8, u8, 3, O>;
57#[doc = "Field `SELCURR` reader - Current selection"]
58pub type SELCURR_R = crate::FieldReader<u8, u8>;
59#[doc = "Field `SELCURR` writer - Current selection"]
60pub type SELCURR_W<'a, const O: u8> = crate::FieldWriter<'a, u32, OSCCTRL32_SPEC, u8, u8, 4, O>;
61#[doc = "Field `STARTUP` reader - Oscillator Start-up Time"]
62pub type STARTUP_R = crate::FieldReader<u8, u8>;
63#[doc = "Field `STARTUP` writer - Oscillator Start-up Time"]
64pub type STARTUP_W<'a, const O: u8> = crate::FieldWriter<'a, u32, OSCCTRL32_SPEC, u8, u8, 3, O>;
65impl R {
66 #[doc = "Bit 0 - 32 KHz Oscillator Enable"]
67 #[inline(always)]
68 pub fn osc32en(&self) -> OSC32EN_R {
69 OSC32EN_R::new((self.bits & 1) != 0)
70 }
71 #[doc = "Bit 1 - Pins Select"]
72 #[inline(always)]
73 pub fn pinsel(&self) -> PINSEL_R {
74 PINSEL_R::new(((self.bits >> 1) & 1) != 0)
75 }
76 #[doc = "Bit 2 - 32 KHz output Enable"]
77 #[inline(always)]
78 pub fn en32k(&self) -> EN32K_R {
79 EN32K_R::new(((self.bits >> 2) & 1) != 0)
80 }
81 #[doc = "Bit 3 - 1 KHz output Enable"]
82 #[inline(always)]
83 pub fn en1k(&self) -> EN1K_R {
84 EN1K_R::new(((self.bits >> 3) & 1) != 0)
85 }
86 #[doc = "Bits 8:10 - Oscillator Mode"]
87 #[inline(always)]
88 pub fn mode(&self) -> MODE_R {
89 MODE_R::new(((self.bits >> 8) & 7) as u8)
90 }
91 #[doc = "Bits 12:15 - Current selection"]
92 #[inline(always)]
93 pub fn selcurr(&self) -> SELCURR_R {
94 SELCURR_R::new(((self.bits >> 12) & 0x0f) as u8)
95 }
96 #[doc = "Bits 16:18 - Oscillator Start-up Time"]
97 #[inline(always)]
98 pub fn startup(&self) -> STARTUP_R {
99 STARTUP_R::new(((self.bits >> 16) & 7) as u8)
100 }
101}
102impl W {
103 #[doc = "Bit 0 - 32 KHz Oscillator Enable"]
104 #[inline(always)]
105 #[must_use]
106 pub fn osc32en(&mut self) -> OSC32EN_W<0> {
107 OSC32EN_W::new(self)
108 }
109 #[doc = "Bit 1 - Pins Select"]
110 #[inline(always)]
111 #[must_use]
112 pub fn pinsel(&mut self) -> PINSEL_W<1> {
113 PINSEL_W::new(self)
114 }
115 #[doc = "Bit 2 - 32 KHz output Enable"]
116 #[inline(always)]
117 #[must_use]
118 pub fn en32k(&mut self) -> EN32K_W<2> {
119 EN32K_W::new(self)
120 }
121 #[doc = "Bit 3 - 1 KHz output Enable"]
122 #[inline(always)]
123 #[must_use]
124 pub fn en1k(&mut self) -> EN1K_W<3> {
125 EN1K_W::new(self)
126 }
127 #[doc = "Bits 8:10 - Oscillator Mode"]
128 #[inline(always)]
129 #[must_use]
130 pub fn mode(&mut self) -> MODE_W<8> {
131 MODE_W::new(self)
132 }
133 #[doc = "Bits 12:15 - Current selection"]
134 #[inline(always)]
135 #[must_use]
136 pub fn selcurr(&mut self) -> SELCURR_W<12> {
137 SELCURR_W::new(self)
138 }
139 #[doc = "Bits 16:18 - Oscillator Start-up Time"]
140 #[inline(always)]
141 #[must_use]
142 pub fn startup(&mut self) -> STARTUP_W<16> {
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: u32) -> &mut Self {
148 self.0.bits(bits);
149 self
150 }
151}
152#[doc = "Oscillator 32 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 [oscctrl32](index.html) module"]
153pub struct OSCCTRL32_SPEC;
154impl crate::RegisterSpec for OSCCTRL32_SPEC {
155 type Ux = u32;
156}
157#[doc = "`read()` method returns [oscctrl32::R](R) reader structure"]
158impl crate::Readable for OSCCTRL32_SPEC {
159 type Reader = R;
160}
161#[doc = "`write(|w| ..)` method takes [oscctrl32::W](W) writer structure"]
162impl crate::Writable for OSCCTRL32_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 OSCCTRL32 to value 0x04"]
168impl crate::Resettable for OSCCTRL32_SPEC {
169 const RESET_VALUE: Self::Ux = 0x04;
170}