stm32f1_staging/stm32f103/rcc/
apb1rstr.rs

1///Register `APB1RSTR` reader
2pub type R = crate::R<APB1RSTRrs>;
3///Register `APB1RSTR` writer
4pub type W = crate::W<APB1RSTRrs>;
5/**Timer 2 reset
6
7Value on reset: 0*/
8#[cfg_attr(feature = "defmt", derive(defmt::Format))]
9#[derive(Clone, Copy, Debug, PartialEq, Eq)]
10pub enum TIM2RST {
11    ///1: Reset the selected module
12    Reset = 1,
13}
14impl From<TIM2RST> for bool {
15    #[inline(always)]
16    fn from(variant: TIM2RST) -> Self {
17        variant as u8 != 0
18    }
19}
20///Field `TIM2RST` reader - Timer 2 reset
21pub type TIM2RST_R = crate::BitReader<TIM2RST>;
22impl TIM2RST_R {
23    ///Get enumerated values variant
24    #[inline(always)]
25    pub const fn variant(&self) -> Option<TIM2RST> {
26        match self.bits {
27            true => Some(TIM2RST::Reset),
28            _ => None,
29        }
30    }
31    ///Reset the selected module
32    #[inline(always)]
33    pub fn is_reset(&self) -> bool {
34        *self == TIM2RST::Reset
35    }
36}
37///Field `TIM2RST` writer - Timer 2 reset
38pub 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    ///Reset the selected module
44    #[inline(always)]
45    pub fn reset(self) -> &'a mut crate::W<REG> {
46        self.variant(TIM2RST::Reset)
47    }
48}
49///Field `TIM3RST` reader - Timer 3 reset
50pub use TIM2RST_R as TIM3RST_R;
51///Field `TIM4RST` reader - Timer 4 reset
52pub use TIM2RST_R as TIM4RST_R;
53///Field `TIM5RST` reader - Timer 5 reset
54pub use TIM2RST_R as TIM5RST_R;
55///Field `TIM6RST` reader - Timer 6 reset
56pub use TIM2RST_R as TIM6RST_R;
57///Field `TIM7RST` reader - Timer 7 reset
58pub use TIM2RST_R as TIM7RST_R;
59///Field `TIM12RST` reader - Timer 12 reset
60pub use TIM2RST_R as TIM12RST_R;
61///Field `TIM13RST` reader - Timer 13 reset
62pub use TIM2RST_R as TIM13RST_R;
63///Field `TIM14RST` reader - Timer 14 reset
64pub use TIM2RST_R as TIM14RST_R;
65///Field `WWDGRST` reader - Window watchdog reset
66pub use TIM2RST_R as WWDGRST_R;
67///Field `SPI2RST` reader - SPI2 reset
68pub use TIM2RST_R as SPI2RST_R;
69///Field `SPI3RST` reader - SPI3 reset
70pub use TIM2RST_R as SPI3RST_R;
71///Field `USART2RST` reader - USART 2 reset
72pub use TIM2RST_R as USART2RST_R;
73///Field `USART3RST` reader - USART 3 reset
74pub use TIM2RST_R as USART3RST_R;
75///Field `UART4RST` reader - UART 4 reset
76pub use TIM2RST_R as UART4RST_R;
77///Field `UART5RST` reader - UART 5 reset
78pub use TIM2RST_R as UART5RST_R;
79///Field `I2C1RST` reader - I2C1 reset
80pub use TIM2RST_R as I2C1RST_R;
81///Field `I2C2RST` reader - I2C2 reset
82pub use TIM2RST_R as I2C2RST_R;
83///Field `USBRST` reader - USB reset
84pub use TIM2RST_R as USBRST_R;
85///Field `CANRST` reader - CAN reset
86pub use TIM2RST_R as CANRST_R;
87///Field `BKPRST` reader - Backup interface reset
88pub use TIM2RST_R as BKPRST_R;
89///Field `PWRRST` reader - Power interface reset
90pub use TIM2RST_R as PWRRST_R;
91///Field `DACRST` reader - DAC interface reset
92pub use TIM2RST_R as DACRST_R;
93///Field `TIM3RST` writer - Timer 3 reset
94pub use TIM2RST_W as TIM3RST_W;
95///Field `TIM4RST` writer - Timer 4 reset
96pub use TIM2RST_W as TIM4RST_W;
97///Field `TIM5RST` writer - Timer 5 reset
98pub use TIM2RST_W as TIM5RST_W;
99///Field `TIM6RST` writer - Timer 6 reset
100pub use TIM2RST_W as TIM6RST_W;
101///Field `TIM7RST` writer - Timer 7 reset
102pub use TIM2RST_W as TIM7RST_W;
103///Field `TIM12RST` writer - Timer 12 reset
104pub use TIM2RST_W as TIM12RST_W;
105///Field `TIM13RST` writer - Timer 13 reset
106pub use TIM2RST_W as TIM13RST_W;
107///Field `TIM14RST` writer - Timer 14 reset
108pub use TIM2RST_W as TIM14RST_W;
109///Field `WWDGRST` writer - Window watchdog reset
110pub use TIM2RST_W as WWDGRST_W;
111///Field `SPI2RST` writer - SPI2 reset
112pub use TIM2RST_W as SPI2RST_W;
113///Field `SPI3RST` writer - SPI3 reset
114pub use TIM2RST_W as SPI3RST_W;
115///Field `USART2RST` writer - USART 2 reset
116pub use TIM2RST_W as USART2RST_W;
117///Field `USART3RST` writer - USART 3 reset
118pub use TIM2RST_W as USART3RST_W;
119///Field `UART4RST` writer - UART 4 reset
120pub use TIM2RST_W as UART4RST_W;
121///Field `UART5RST` writer - UART 5 reset
122pub use TIM2RST_W as UART5RST_W;
123///Field `I2C1RST` writer - I2C1 reset
124pub use TIM2RST_W as I2C1RST_W;
125///Field `I2C2RST` writer - I2C2 reset
126pub use TIM2RST_W as I2C2RST_W;
127///Field `USBRST` writer - USB reset
128pub use TIM2RST_W as USBRST_W;
129///Field `CANRST` writer - CAN reset
130pub use TIM2RST_W as CANRST_W;
131///Field `BKPRST` writer - Backup interface reset
132pub use TIM2RST_W as BKPRST_W;
133///Field `PWRRST` writer - Power interface reset
134pub use TIM2RST_W as PWRRST_W;
135///Field `DACRST` writer - DAC interface reset
136pub use TIM2RST_W as DACRST_W;
137impl R {
138    ///Bit 0 - Timer 2 reset
139    #[inline(always)]
140    pub fn tim2rst(&self) -> TIM2RST_R {
141        TIM2RST_R::new((self.bits & 1) != 0)
142    }
143    ///Bit 1 - Timer 3 reset
144    #[inline(always)]
145    pub fn tim3rst(&self) -> TIM3RST_R {
146        TIM3RST_R::new(((self.bits >> 1) & 1) != 0)
147    }
148    ///Bit 2 - Timer 4 reset
149    #[inline(always)]
150    pub fn tim4rst(&self) -> TIM4RST_R {
151        TIM4RST_R::new(((self.bits >> 2) & 1) != 0)
152    }
153    ///Bit 3 - Timer 5 reset
154    #[inline(always)]
155    pub fn tim5rst(&self) -> TIM5RST_R {
156        TIM5RST_R::new(((self.bits >> 3) & 1) != 0)
157    }
158    ///Bit 4 - Timer 6 reset
159    #[inline(always)]
160    pub fn tim6rst(&self) -> TIM6RST_R {
161        TIM6RST_R::new(((self.bits >> 4) & 1) != 0)
162    }
163    ///Bit 5 - Timer 7 reset
164    #[inline(always)]
165    pub fn tim7rst(&self) -> TIM7RST_R {
166        TIM7RST_R::new(((self.bits >> 5) & 1) != 0)
167    }
168    ///Bit 6 - Timer 12 reset
169    #[inline(always)]
170    pub fn tim12rst(&self) -> TIM12RST_R {
171        TIM12RST_R::new(((self.bits >> 6) & 1) != 0)
172    }
173    ///Bit 7 - Timer 13 reset
174    #[inline(always)]
175    pub fn tim13rst(&self) -> TIM13RST_R {
176        TIM13RST_R::new(((self.bits >> 7) & 1) != 0)
177    }
178    ///Bit 8 - Timer 14 reset
179    #[inline(always)]
180    pub fn tim14rst(&self) -> TIM14RST_R {
181        TIM14RST_R::new(((self.bits >> 8) & 1) != 0)
182    }
183    ///Bit 11 - Window watchdog reset
184    #[inline(always)]
185    pub fn wwdgrst(&self) -> WWDGRST_R {
186        WWDGRST_R::new(((self.bits >> 11) & 1) != 0)
187    }
188    ///Bit 14 - SPI2 reset
189    #[inline(always)]
190    pub fn spi2rst(&self) -> SPI2RST_R {
191        SPI2RST_R::new(((self.bits >> 14) & 1) != 0)
192    }
193    ///Bit 15 - SPI3 reset
194    #[inline(always)]
195    pub fn spi3rst(&self) -> SPI3RST_R {
196        SPI3RST_R::new(((self.bits >> 15) & 1) != 0)
197    }
198    ///Bit 17 - USART 2 reset
199    #[inline(always)]
200    pub fn usart2rst(&self) -> USART2RST_R {
201        USART2RST_R::new(((self.bits >> 17) & 1) != 0)
202    }
203    ///Bit 18 - USART 3 reset
204    #[inline(always)]
205    pub fn usart3rst(&self) -> USART3RST_R {
206        USART3RST_R::new(((self.bits >> 18) & 1) != 0)
207    }
208    ///Bit 19 - UART 4 reset
209    #[inline(always)]
210    pub fn uart4rst(&self) -> UART4RST_R {
211        UART4RST_R::new(((self.bits >> 19) & 1) != 0)
212    }
213    ///Bit 20 - UART 5 reset
214    #[inline(always)]
215    pub fn uart5rst(&self) -> UART5RST_R {
216        UART5RST_R::new(((self.bits >> 20) & 1) != 0)
217    }
218    ///Bit 21 - I2C1 reset
219    #[inline(always)]
220    pub fn i2c1rst(&self) -> I2C1RST_R {
221        I2C1RST_R::new(((self.bits >> 21) & 1) != 0)
222    }
223    ///Bit 22 - I2C2 reset
224    #[inline(always)]
225    pub fn i2c2rst(&self) -> I2C2RST_R {
226        I2C2RST_R::new(((self.bits >> 22) & 1) != 0)
227    }
228    ///Bit 23 - USB reset
229    #[inline(always)]
230    pub fn usbrst(&self) -> USBRST_R {
231        USBRST_R::new(((self.bits >> 23) & 1) != 0)
232    }
233    ///Bit 25 - CAN reset
234    #[inline(always)]
235    pub fn canrst(&self) -> CANRST_R {
236        CANRST_R::new(((self.bits >> 25) & 1) != 0)
237    }
238    ///Bit 27 - Backup interface reset
239    #[inline(always)]
240    pub fn bkprst(&self) -> BKPRST_R {
241        BKPRST_R::new(((self.bits >> 27) & 1) != 0)
242    }
243    ///Bit 28 - Power interface reset
244    #[inline(always)]
245    pub fn pwrrst(&self) -> PWRRST_R {
246        PWRRST_R::new(((self.bits >> 28) & 1) != 0)
247    }
248    ///Bit 29 - DAC interface reset
249    #[inline(always)]
250    pub fn dacrst(&self) -> DACRST_R {
251        DACRST_R::new(((self.bits >> 29) & 1) != 0)
252    }
253}
254impl core::fmt::Debug for R {
255    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
256        f.debug_struct("APB1RSTR")
257            .field("tim2rst", &self.tim2rst())
258            .field("tim3rst", &self.tim3rst())
259            .field("tim4rst", &self.tim4rst())
260            .field("tim5rst", &self.tim5rst())
261            .field("tim6rst", &self.tim6rst())
262            .field("tim7rst", &self.tim7rst())
263            .field("tim12rst", &self.tim12rst())
264            .field("tim13rst", &self.tim13rst())
265            .field("tim14rst", &self.tim14rst())
266            .field("wwdgrst", &self.wwdgrst())
267            .field("spi2rst", &self.spi2rst())
268            .field("spi3rst", &self.spi3rst())
269            .field("usart2rst", &self.usart2rst())
270            .field("usart3rst", &self.usart3rst())
271            .field("uart4rst", &self.uart4rst())
272            .field("uart5rst", &self.uart5rst())
273            .field("i2c1rst", &self.i2c1rst())
274            .field("i2c2rst", &self.i2c2rst())
275            .field("usbrst", &self.usbrst())
276            .field("canrst", &self.canrst())
277            .field("bkprst", &self.bkprst())
278            .field("pwrrst", &self.pwrrst())
279            .field("dacrst", &self.dacrst())
280            .finish()
281    }
282}
283impl W {
284    ///Bit 0 - Timer 2 reset
285    #[inline(always)]
286    pub fn tim2rst(&mut self) -> TIM2RST_W<APB1RSTRrs> {
287        TIM2RST_W::new(self, 0)
288    }
289    ///Bit 1 - Timer 3 reset
290    #[inline(always)]
291    pub fn tim3rst(&mut self) -> TIM3RST_W<APB1RSTRrs> {
292        TIM3RST_W::new(self, 1)
293    }
294    ///Bit 2 - Timer 4 reset
295    #[inline(always)]
296    pub fn tim4rst(&mut self) -> TIM4RST_W<APB1RSTRrs> {
297        TIM4RST_W::new(self, 2)
298    }
299    ///Bit 3 - Timer 5 reset
300    #[inline(always)]
301    pub fn tim5rst(&mut self) -> TIM5RST_W<APB1RSTRrs> {
302        TIM5RST_W::new(self, 3)
303    }
304    ///Bit 4 - Timer 6 reset
305    #[inline(always)]
306    pub fn tim6rst(&mut self) -> TIM6RST_W<APB1RSTRrs> {
307        TIM6RST_W::new(self, 4)
308    }
309    ///Bit 5 - Timer 7 reset
310    #[inline(always)]
311    pub fn tim7rst(&mut self) -> TIM7RST_W<APB1RSTRrs> {
312        TIM7RST_W::new(self, 5)
313    }
314    ///Bit 6 - Timer 12 reset
315    #[inline(always)]
316    pub fn tim12rst(&mut self) -> TIM12RST_W<APB1RSTRrs> {
317        TIM12RST_W::new(self, 6)
318    }
319    ///Bit 7 - Timer 13 reset
320    #[inline(always)]
321    pub fn tim13rst(&mut self) -> TIM13RST_W<APB1RSTRrs> {
322        TIM13RST_W::new(self, 7)
323    }
324    ///Bit 8 - Timer 14 reset
325    #[inline(always)]
326    pub fn tim14rst(&mut self) -> TIM14RST_W<APB1RSTRrs> {
327        TIM14RST_W::new(self, 8)
328    }
329    ///Bit 11 - Window watchdog reset
330    #[inline(always)]
331    pub fn wwdgrst(&mut self) -> WWDGRST_W<APB1RSTRrs> {
332        WWDGRST_W::new(self, 11)
333    }
334    ///Bit 14 - SPI2 reset
335    #[inline(always)]
336    pub fn spi2rst(&mut self) -> SPI2RST_W<APB1RSTRrs> {
337        SPI2RST_W::new(self, 14)
338    }
339    ///Bit 15 - SPI3 reset
340    #[inline(always)]
341    pub fn spi3rst(&mut self) -> SPI3RST_W<APB1RSTRrs> {
342        SPI3RST_W::new(self, 15)
343    }
344    ///Bit 17 - USART 2 reset
345    #[inline(always)]
346    pub fn usart2rst(&mut self) -> USART2RST_W<APB1RSTRrs> {
347        USART2RST_W::new(self, 17)
348    }
349    ///Bit 18 - USART 3 reset
350    #[inline(always)]
351    pub fn usart3rst(&mut self) -> USART3RST_W<APB1RSTRrs> {
352        USART3RST_W::new(self, 18)
353    }
354    ///Bit 19 - UART 4 reset
355    #[inline(always)]
356    pub fn uart4rst(&mut self) -> UART4RST_W<APB1RSTRrs> {
357        UART4RST_W::new(self, 19)
358    }
359    ///Bit 20 - UART 5 reset
360    #[inline(always)]
361    pub fn uart5rst(&mut self) -> UART5RST_W<APB1RSTRrs> {
362        UART5RST_W::new(self, 20)
363    }
364    ///Bit 21 - I2C1 reset
365    #[inline(always)]
366    pub fn i2c1rst(&mut self) -> I2C1RST_W<APB1RSTRrs> {
367        I2C1RST_W::new(self, 21)
368    }
369    ///Bit 22 - I2C2 reset
370    #[inline(always)]
371    pub fn i2c2rst(&mut self) -> I2C2RST_W<APB1RSTRrs> {
372        I2C2RST_W::new(self, 22)
373    }
374    ///Bit 23 - USB reset
375    #[inline(always)]
376    pub fn usbrst(&mut self) -> USBRST_W<APB1RSTRrs> {
377        USBRST_W::new(self, 23)
378    }
379    ///Bit 25 - CAN reset
380    #[inline(always)]
381    pub fn canrst(&mut self) -> CANRST_W<APB1RSTRrs> {
382        CANRST_W::new(self, 25)
383    }
384    ///Bit 27 - Backup interface reset
385    #[inline(always)]
386    pub fn bkprst(&mut self) -> BKPRST_W<APB1RSTRrs> {
387        BKPRST_W::new(self, 27)
388    }
389    ///Bit 28 - Power interface reset
390    #[inline(always)]
391    pub fn pwrrst(&mut self) -> PWRRST_W<APB1RSTRrs> {
392        PWRRST_W::new(self, 28)
393    }
394    ///Bit 29 - DAC interface reset
395    #[inline(always)]
396    pub fn dacrst(&mut self) -> DACRST_W<APB1RSTRrs> {
397        DACRST_W::new(self, 29)
398    }
399}
400/**APB1 peripheral reset register (RCC_APB1RSTR)
401
402You can [`read`](crate::Reg::read) this register and get [`apb1rstr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`apb1rstr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
403
404See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F103.html#RCC:APB1RSTR)*/
405pub struct APB1RSTRrs;
406impl crate::RegisterSpec for APB1RSTRrs {
407    type Ux = u32;
408}
409///`read()` method returns [`apb1rstr::R`](R) reader structure
410impl crate::Readable for APB1RSTRrs {}
411///`write(|w| ..)` method takes [`apb1rstr::W`](W) writer structure
412impl crate::Writable for APB1RSTRrs {
413    type Safety = crate::Unsafe;
414}
415///`reset()` method sets APB1RSTR to value 0
416impl crate::Resettable for APB1RSTRrs {}