rp2040_pac/resets/
reset_done.rs

1#[doc = "Register `RESET_DONE` reader"]
2pub type R = crate::R<RESET_DONE_SPEC>;
3#[doc = "Field `adc` reader - "]
4pub type ADC_R = crate::BitReader;
5#[doc = "Field `busctrl` reader - "]
6pub type BUSCTRL_R = crate::BitReader;
7#[doc = "Field `dma` reader - "]
8pub type DMA_R = crate::BitReader;
9#[doc = "Field `i2c0` reader - "]
10pub type I2C0_R = crate::BitReader;
11#[doc = "Field `i2c1` reader - "]
12pub type I2C1_R = crate::BitReader;
13#[doc = "Field `io_bank0` reader - "]
14pub type IO_BANK0_R = crate::BitReader;
15#[doc = "Field `io_qspi` reader - "]
16pub type IO_QSPI_R = crate::BitReader;
17#[doc = "Field `jtag` reader - "]
18pub type JTAG_R = crate::BitReader;
19#[doc = "Field `pads_bank0` reader - "]
20pub type PADS_BANK0_R = crate::BitReader;
21#[doc = "Field `pads_qspi` reader - "]
22pub type PADS_QSPI_R = crate::BitReader;
23#[doc = "Field `pio0` reader - "]
24pub type PIO0_R = crate::BitReader;
25#[doc = "Field `pio1` reader - "]
26pub type PIO1_R = crate::BitReader;
27#[doc = "Field `pll_sys` reader - "]
28pub type PLL_SYS_R = crate::BitReader;
29#[doc = "Field `pll_usb` reader - "]
30pub type PLL_USB_R = crate::BitReader;
31#[doc = "Field `pwm` reader - "]
32pub type PWM_R = crate::BitReader;
33#[doc = "Field `rtc` reader - "]
34pub type RTC_R = crate::BitReader;
35#[doc = "Field `spi0` reader - "]
36pub type SPI0_R = crate::BitReader;
37#[doc = "Field `spi1` reader - "]
38pub type SPI1_R = crate::BitReader;
39#[doc = "Field `syscfg` reader - "]
40pub type SYSCFG_R = crate::BitReader;
41#[doc = "Field `sysinfo` reader - "]
42pub type SYSINFO_R = crate::BitReader;
43#[doc = "Field `tbman` reader - "]
44pub type TBMAN_R = crate::BitReader;
45#[doc = "Field `timer` reader - "]
46pub type TIMER_R = crate::BitReader;
47#[doc = "Field `uart0` reader - "]
48pub type UART0_R = crate::BitReader;
49#[doc = "Field `uart1` reader - "]
50pub type UART1_R = crate::BitReader;
51#[doc = "Field `usbctrl` reader - "]
52pub type USBCTRL_R = crate::BitReader;
53impl R {
54    #[doc = "Bit 0"]
55    #[inline(always)]
56    pub fn adc(&self) -> ADC_R {
57        ADC_R::new((self.bits & 1) != 0)
58    }
59    #[doc = "Bit 1"]
60    #[inline(always)]
61    pub fn busctrl(&self) -> BUSCTRL_R {
62        BUSCTRL_R::new(((self.bits >> 1) & 1) != 0)
63    }
64    #[doc = "Bit 2"]
65    #[inline(always)]
66    pub fn dma(&self) -> DMA_R {
67        DMA_R::new(((self.bits >> 2) & 1) != 0)
68    }
69    #[doc = "Bit 3"]
70    #[inline(always)]
71    pub fn i2c0(&self) -> I2C0_R {
72        I2C0_R::new(((self.bits >> 3) & 1) != 0)
73    }
74    #[doc = "Bit 4"]
75    #[inline(always)]
76    pub fn i2c1(&self) -> I2C1_R {
77        I2C1_R::new(((self.bits >> 4) & 1) != 0)
78    }
79    #[doc = "Bit 5"]
80    #[inline(always)]
81    pub fn io_bank0(&self) -> IO_BANK0_R {
82        IO_BANK0_R::new(((self.bits >> 5) & 1) != 0)
83    }
84    #[doc = "Bit 6"]
85    #[inline(always)]
86    pub fn io_qspi(&self) -> IO_QSPI_R {
87        IO_QSPI_R::new(((self.bits >> 6) & 1) != 0)
88    }
89    #[doc = "Bit 7"]
90    #[inline(always)]
91    pub fn jtag(&self) -> JTAG_R {
92        JTAG_R::new(((self.bits >> 7) & 1) != 0)
93    }
94    #[doc = "Bit 8"]
95    #[inline(always)]
96    pub fn pads_bank0(&self) -> PADS_BANK0_R {
97        PADS_BANK0_R::new(((self.bits >> 8) & 1) != 0)
98    }
99    #[doc = "Bit 9"]
100    #[inline(always)]
101    pub fn pads_qspi(&self) -> PADS_QSPI_R {
102        PADS_QSPI_R::new(((self.bits >> 9) & 1) != 0)
103    }
104    #[doc = "Bit 10"]
105    #[inline(always)]
106    pub fn pio0(&self) -> PIO0_R {
107        PIO0_R::new(((self.bits >> 10) & 1) != 0)
108    }
109    #[doc = "Bit 11"]
110    #[inline(always)]
111    pub fn pio1(&self) -> PIO1_R {
112        PIO1_R::new(((self.bits >> 11) & 1) != 0)
113    }
114    #[doc = "Bit 12"]
115    #[inline(always)]
116    pub fn pll_sys(&self) -> PLL_SYS_R {
117        PLL_SYS_R::new(((self.bits >> 12) & 1) != 0)
118    }
119    #[doc = "Bit 13"]
120    #[inline(always)]
121    pub fn pll_usb(&self) -> PLL_USB_R {
122        PLL_USB_R::new(((self.bits >> 13) & 1) != 0)
123    }
124    #[doc = "Bit 14"]
125    #[inline(always)]
126    pub fn pwm(&self) -> PWM_R {
127        PWM_R::new(((self.bits >> 14) & 1) != 0)
128    }
129    #[doc = "Bit 15"]
130    #[inline(always)]
131    pub fn rtc(&self) -> RTC_R {
132        RTC_R::new(((self.bits >> 15) & 1) != 0)
133    }
134    #[doc = "Bit 16"]
135    #[inline(always)]
136    pub fn spi0(&self) -> SPI0_R {
137        SPI0_R::new(((self.bits >> 16) & 1) != 0)
138    }
139    #[doc = "Bit 17"]
140    #[inline(always)]
141    pub fn spi1(&self) -> SPI1_R {
142        SPI1_R::new(((self.bits >> 17) & 1) != 0)
143    }
144    #[doc = "Bit 18"]
145    #[inline(always)]
146    pub fn syscfg(&self) -> SYSCFG_R {
147        SYSCFG_R::new(((self.bits >> 18) & 1) != 0)
148    }
149    #[doc = "Bit 19"]
150    #[inline(always)]
151    pub fn sysinfo(&self) -> SYSINFO_R {
152        SYSINFO_R::new(((self.bits >> 19) & 1) != 0)
153    }
154    #[doc = "Bit 20"]
155    #[inline(always)]
156    pub fn tbman(&self) -> TBMAN_R {
157        TBMAN_R::new(((self.bits >> 20) & 1) != 0)
158    }
159    #[doc = "Bit 21"]
160    #[inline(always)]
161    pub fn timer(&self) -> TIMER_R {
162        TIMER_R::new(((self.bits >> 21) & 1) != 0)
163    }
164    #[doc = "Bit 22"]
165    #[inline(always)]
166    pub fn uart0(&self) -> UART0_R {
167        UART0_R::new(((self.bits >> 22) & 1) != 0)
168    }
169    #[doc = "Bit 23"]
170    #[inline(always)]
171    pub fn uart1(&self) -> UART1_R {
172        UART1_R::new(((self.bits >> 23) & 1) != 0)
173    }
174    #[doc = "Bit 24"]
175    #[inline(always)]
176    pub fn usbctrl(&self) -> USBCTRL_R {
177        USBCTRL_R::new(((self.bits >> 24) & 1) != 0)
178    }
179}
180#[doc = "Reset done. If a bit is set then a reset done signal has been returned by the peripheral. This indicates that the peripheral's registers are ready to be accessed.  
181
182You can [`read`](crate::generic::Reg::read) this register and get [`reset_done::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
183pub struct RESET_DONE_SPEC;
184impl crate::RegisterSpec for RESET_DONE_SPEC {
185    type Ux = u32;
186}
187#[doc = "`read()` method returns [`reset_done::R`](R) reader structure"]
188impl crate::Readable for RESET_DONE_SPEC {}
189#[doc = "`reset()` method sets RESET_DONE to value 0"]
190impl crate::Resettable for RESET_DONE_SPEC {
191    const RESET_VALUE: u32 = 0;
192}