stm32f0/stm32f0x2/rcc/
apb1rstr.rs1pub type R = crate::R<APB1RSTRrs>;
3pub type W = crate::W<APB1RSTRrs>;
5#[cfg_attr(feature = "defmt", derive(defmt::Format))]
9#[derive(Clone, Copy, Debug, PartialEq, Eq)]
10pub enum TIM2RST {
11 Reset = 1,
13}
14impl From<TIM2RST> for bool {
15 #[inline(always)]
16 fn from(variant: TIM2RST) -> Self {
17 variant as u8 != 0
18 }
19}
20pub type TIM2RST_R = crate::BitReader<TIM2RST>;
22impl TIM2RST_R {
23 #[inline(always)]
25 pub const fn variant(&self) -> Option<TIM2RST> {
26 match self.bits {
27 true => Some(TIM2RST::Reset),
28 _ => None,
29 }
30 }
31 #[inline(always)]
33 pub fn is_reset(&self) -> bool {
34 *self == TIM2RST::Reset
35 }
36}
37pub type TIM2RST_W<'a, REG> = crate::BitWriter<'a, REG, TIM2RST>;
39impl<'a, REG> TIM2RST_W<'a, REG>
40where
41 REG: crate::Writable + crate::RegisterSpec,
42{
43 #[inline(always)]
45 pub fn reset(self) -> &'a mut crate::W<REG> {
46 self.variant(TIM2RST::Reset)
47 }
48}
49pub use TIM2RST_R as TIM3RST_R;
51pub use TIM2RST_R as TIM6RST_R;
53pub use TIM2RST_R as TIM7RST_R;
55pub use TIM2RST_R as TIM14RST_R;
57pub use TIM2RST_R as WWDGRST_R;
59pub use TIM2RST_R as SPI2RST_R;
61pub use TIM2RST_R as USART2RST_R;
63pub use TIM2RST_R as USART3RST_R;
65pub use TIM2RST_R as USART4RST_R;
67pub use TIM2RST_R as USART5RST_R;
69pub use TIM2RST_R as I2C1RST_R;
71pub use TIM2RST_R as I2C2RST_R;
73pub use TIM2RST_R as USBRST_R;
75pub use TIM2RST_R as CANRST_R;
77pub use TIM2RST_R as CRSRST_R;
79pub use TIM2RST_R as PWRRST_R;
81pub use TIM2RST_R as DACRST_R;
83pub use TIM2RST_R as CECRST_R;
85pub use TIM2RST_W as TIM3RST_W;
87pub use TIM2RST_W as TIM6RST_W;
89pub use TIM2RST_W as TIM7RST_W;
91pub use TIM2RST_W as TIM14RST_W;
93pub use TIM2RST_W as WWDGRST_W;
95pub use TIM2RST_W as SPI2RST_W;
97pub use TIM2RST_W as USART2RST_W;
99pub use TIM2RST_W as USART3RST_W;
101pub use TIM2RST_W as USART4RST_W;
103pub use TIM2RST_W as USART5RST_W;
105pub use TIM2RST_W as I2C1RST_W;
107pub use TIM2RST_W as I2C2RST_W;
109pub use TIM2RST_W as USBRST_W;
111pub use TIM2RST_W as CANRST_W;
113pub use TIM2RST_W as CRSRST_W;
115pub use TIM2RST_W as PWRRST_W;
117pub use TIM2RST_W as DACRST_W;
119pub use TIM2RST_W as CECRST_W;
121impl R {
122 #[inline(always)]
124 pub fn tim2rst(&self) -> TIM2RST_R {
125 TIM2RST_R::new((self.bits & 1) != 0)
126 }
127 #[inline(always)]
129 pub fn tim3rst(&self) -> TIM3RST_R {
130 TIM3RST_R::new(((self.bits >> 1) & 1) != 0)
131 }
132 #[inline(always)]
134 pub fn tim6rst(&self) -> TIM6RST_R {
135 TIM6RST_R::new(((self.bits >> 4) & 1) != 0)
136 }
137 #[inline(always)]
139 pub fn tim7rst(&self) -> TIM7RST_R {
140 TIM7RST_R::new(((self.bits >> 5) & 1) != 0)
141 }
142 #[inline(always)]
144 pub fn tim14rst(&self) -> TIM14RST_R {
145 TIM14RST_R::new(((self.bits >> 8) & 1) != 0)
146 }
147 #[inline(always)]
149 pub fn wwdgrst(&self) -> WWDGRST_R {
150 WWDGRST_R::new(((self.bits >> 11) & 1) != 0)
151 }
152 #[inline(always)]
154 pub fn spi2rst(&self) -> SPI2RST_R {
155 SPI2RST_R::new(((self.bits >> 14) & 1) != 0)
156 }
157 #[inline(always)]
159 pub fn usart2rst(&self) -> USART2RST_R {
160 USART2RST_R::new(((self.bits >> 17) & 1) != 0)
161 }
162 #[inline(always)]
164 pub fn usart3rst(&self) -> USART3RST_R {
165 USART3RST_R::new(((self.bits >> 18) & 1) != 0)
166 }
167 #[inline(always)]
169 pub fn usart4rst(&self) -> USART4RST_R {
170 USART4RST_R::new(((self.bits >> 19) & 1) != 0)
171 }
172 #[inline(always)]
174 pub fn usart5rst(&self) -> USART5RST_R {
175 USART5RST_R::new(((self.bits >> 20) & 1) != 0)
176 }
177 #[inline(always)]
179 pub fn i2c1rst(&self) -> I2C1RST_R {
180 I2C1RST_R::new(((self.bits >> 21) & 1) != 0)
181 }
182 #[inline(always)]
184 pub fn i2c2rst(&self) -> I2C2RST_R {
185 I2C2RST_R::new(((self.bits >> 22) & 1) != 0)
186 }
187 #[inline(always)]
189 pub fn usbrst(&self) -> USBRST_R {
190 USBRST_R::new(((self.bits >> 23) & 1) != 0)
191 }
192 #[inline(always)]
194 pub fn canrst(&self) -> CANRST_R {
195 CANRST_R::new(((self.bits >> 25) & 1) != 0)
196 }
197 #[inline(always)]
199 pub fn crsrst(&self) -> CRSRST_R {
200 CRSRST_R::new(((self.bits >> 27) & 1) != 0)
201 }
202 #[inline(always)]
204 pub fn pwrrst(&self) -> PWRRST_R {
205 PWRRST_R::new(((self.bits >> 28) & 1) != 0)
206 }
207 #[inline(always)]
209 pub fn dacrst(&self) -> DACRST_R {
210 DACRST_R::new(((self.bits >> 29) & 1) != 0)
211 }
212 #[inline(always)]
214 pub fn cecrst(&self) -> CECRST_R {
215 CECRST_R::new(((self.bits >> 30) & 1) != 0)
216 }
217}
218impl core::fmt::Debug for R {
219 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
220 f.debug_struct("APB1RSTR")
221 .field("tim2rst", &self.tim2rst())
222 .field("tim3rst", &self.tim3rst())
223 .field("tim6rst", &self.tim6rst())
224 .field("tim7rst", &self.tim7rst())
225 .field("tim14rst", &self.tim14rst())
226 .field("wwdgrst", &self.wwdgrst())
227 .field("spi2rst", &self.spi2rst())
228 .field("usart2rst", &self.usart2rst())
229 .field("usart3rst", &self.usart3rst())
230 .field("usart4rst", &self.usart4rst())
231 .field("i2c1rst", &self.i2c1rst())
232 .field("i2c2rst", &self.i2c2rst())
233 .field("usbrst", &self.usbrst())
234 .field("canrst", &self.canrst())
235 .field("crsrst", &self.crsrst())
236 .field("pwrrst", &self.pwrrst())
237 .field("dacrst", &self.dacrst())
238 .field("cecrst", &self.cecrst())
239 .field("usart5rst", &self.usart5rst())
240 .finish()
241 }
242}
243impl W {
244 #[inline(always)]
246 pub fn tim2rst(&mut self) -> TIM2RST_W<APB1RSTRrs> {
247 TIM2RST_W::new(self, 0)
248 }
249 #[inline(always)]
251 pub fn tim3rst(&mut self) -> TIM3RST_W<APB1RSTRrs> {
252 TIM3RST_W::new(self, 1)
253 }
254 #[inline(always)]
256 pub fn tim6rst(&mut self) -> TIM6RST_W<APB1RSTRrs> {
257 TIM6RST_W::new(self, 4)
258 }
259 #[inline(always)]
261 pub fn tim7rst(&mut self) -> TIM7RST_W<APB1RSTRrs> {
262 TIM7RST_W::new(self, 5)
263 }
264 #[inline(always)]
266 pub fn tim14rst(&mut self) -> TIM14RST_W<APB1RSTRrs> {
267 TIM14RST_W::new(self, 8)
268 }
269 #[inline(always)]
271 pub fn wwdgrst(&mut self) -> WWDGRST_W<APB1RSTRrs> {
272 WWDGRST_W::new(self, 11)
273 }
274 #[inline(always)]
276 pub fn spi2rst(&mut self) -> SPI2RST_W<APB1RSTRrs> {
277 SPI2RST_W::new(self, 14)
278 }
279 #[inline(always)]
281 pub fn usart2rst(&mut self) -> USART2RST_W<APB1RSTRrs> {
282 USART2RST_W::new(self, 17)
283 }
284 #[inline(always)]
286 pub fn usart3rst(&mut self) -> USART3RST_W<APB1RSTRrs> {
287 USART3RST_W::new(self, 18)
288 }
289 #[inline(always)]
291 pub fn usart4rst(&mut self) -> USART4RST_W<APB1RSTRrs> {
292 USART4RST_W::new(self, 19)
293 }
294 #[inline(always)]
296 pub fn usart5rst(&mut self) -> USART5RST_W<APB1RSTRrs> {
297 USART5RST_W::new(self, 20)
298 }
299 #[inline(always)]
301 pub fn i2c1rst(&mut self) -> I2C1RST_W<APB1RSTRrs> {
302 I2C1RST_W::new(self, 21)
303 }
304 #[inline(always)]
306 pub fn i2c2rst(&mut self) -> I2C2RST_W<APB1RSTRrs> {
307 I2C2RST_W::new(self, 22)
308 }
309 #[inline(always)]
311 pub fn usbrst(&mut self) -> USBRST_W<APB1RSTRrs> {
312 USBRST_W::new(self, 23)
313 }
314 #[inline(always)]
316 pub fn canrst(&mut self) -> CANRST_W<APB1RSTRrs> {
317 CANRST_W::new(self, 25)
318 }
319 #[inline(always)]
321 pub fn crsrst(&mut self) -> CRSRST_W<APB1RSTRrs> {
322 CRSRST_W::new(self, 27)
323 }
324 #[inline(always)]
326 pub fn pwrrst(&mut self) -> PWRRST_W<APB1RSTRrs> {
327 PWRRST_W::new(self, 28)
328 }
329 #[inline(always)]
331 pub fn dacrst(&mut self) -> DACRST_W<APB1RSTRrs> {
332 DACRST_W::new(self, 29)
333 }
334 #[inline(always)]
336 pub fn cecrst(&mut self) -> CECRST_W<APB1RSTRrs> {
337 CECRST_W::new(self, 30)
338 }
339}
340pub struct APB1RSTRrs;
346impl crate::RegisterSpec for APB1RSTRrs {
347 type Ux = u32;
348}
349impl crate::Readable for APB1RSTRrs {}
351impl crate::Writable for APB1RSTRrs {
353 type Safety = crate::Unsafe;
354}
355impl crate::Resettable for APB1RSTRrs {}