rp2040_pac/
io_bank0.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    gpio: [GPIO; 30],
5    intr: [INTR; 4],
6    proc0_inte: [PROC0_INTE; 4],
7    proc0_intf: [PROC0_INTF; 4],
8    proc0_ints: [PROC0_INTS; 4],
9    proc1_inte: [PROC1_INTE; 4],
10    proc1_intf: [PROC1_INTF; 4],
11    proc1_ints: [PROC1_INTS; 4],
12    dormant_wake_inte: [DORMANT_WAKE_INTE; 4],
13    dormant_wake_intf: [DORMANT_WAKE_INTF; 4],
14    dormant_wake_ints: [DORMANT_WAKE_INTS; 4],
15}
16impl RegisterBlock {
17    #[doc = "0x00..0xf0 - Cluster GPIO%s, containing GPIO*_STATUS, GPIO*_CTRL"]
18    #[inline(always)]
19    pub const fn gpio(&self, n: usize) -> &GPIO {
20        &self.gpio[n]
21    }
22    #[doc = "Iterator for array of:"]
23    #[doc = "0x00..0xf0 - Cluster GPIO%s, containing GPIO*_STATUS, GPIO*_CTRL"]
24    #[inline(always)]
25    pub fn gpio_iter(&self) -> impl Iterator<Item = &GPIO> {
26        self.gpio.iter()
27    }
28    #[doc = "0xf0..0x100 - Raw Interrupts"]
29    #[inline(always)]
30    pub const fn intr(&self, n: usize) -> &INTR {
31        &self.intr[n]
32    }
33    #[doc = "Iterator for array of:"]
34    #[doc = "0xf0..0x100 - Raw Interrupts"]
35    #[inline(always)]
36    pub fn intr_iter(&self) -> impl Iterator<Item = &INTR> {
37        self.intr.iter()
38    }
39    #[doc = "0x100..0x110 - Interrupt Enable for proc0"]
40    #[inline(always)]
41    pub const fn proc0_inte(&self, n: usize) -> &PROC0_INTE {
42        &self.proc0_inte[n]
43    }
44    #[doc = "Iterator for array of:"]
45    #[doc = "0x100..0x110 - Interrupt Enable for proc0"]
46    #[inline(always)]
47    pub fn proc0_inte_iter(&self) -> impl Iterator<Item = &PROC0_INTE> {
48        self.proc0_inte.iter()
49    }
50    #[doc = "0x110..0x120 - Interrupt Force for proc0"]
51    #[inline(always)]
52    pub const fn proc0_intf(&self, n: usize) -> &PROC0_INTF {
53        &self.proc0_intf[n]
54    }
55    #[doc = "Iterator for array of:"]
56    #[doc = "0x110..0x120 - Interrupt Force for proc0"]
57    #[inline(always)]
58    pub fn proc0_intf_iter(&self) -> impl Iterator<Item = &PROC0_INTF> {
59        self.proc0_intf.iter()
60    }
61    #[doc = "0x120..0x130 - Interrupt status after masking &amp; forcing for proc0"]
62    #[inline(always)]
63    pub const fn proc0_ints(&self, n: usize) -> &PROC0_INTS {
64        &self.proc0_ints[n]
65    }
66    #[doc = "Iterator for array of:"]
67    #[doc = "0x120..0x130 - Interrupt status after masking &amp; forcing for proc0"]
68    #[inline(always)]
69    pub fn proc0_ints_iter(&self) -> impl Iterator<Item = &PROC0_INTS> {
70        self.proc0_ints.iter()
71    }
72    #[doc = "0x130..0x140 - Interrupt Enable for proc1"]
73    #[inline(always)]
74    pub const fn proc1_inte(&self, n: usize) -> &PROC1_INTE {
75        &self.proc1_inte[n]
76    }
77    #[doc = "Iterator for array of:"]
78    #[doc = "0x130..0x140 - Interrupt Enable for proc1"]
79    #[inline(always)]
80    pub fn proc1_inte_iter(&self) -> impl Iterator<Item = &PROC1_INTE> {
81        self.proc1_inte.iter()
82    }
83    #[doc = "0x140..0x150 - Interrupt Force for proc1"]
84    #[inline(always)]
85    pub const fn proc1_intf(&self, n: usize) -> &PROC1_INTF {
86        &self.proc1_intf[n]
87    }
88    #[doc = "Iterator for array of:"]
89    #[doc = "0x140..0x150 - Interrupt Force for proc1"]
90    #[inline(always)]
91    pub fn proc1_intf_iter(&self) -> impl Iterator<Item = &PROC1_INTF> {
92        self.proc1_intf.iter()
93    }
94    #[doc = "0x150..0x160 - Interrupt status after masking &amp; forcing for proc1"]
95    #[inline(always)]
96    pub const fn proc1_ints(&self, n: usize) -> &PROC1_INTS {
97        &self.proc1_ints[n]
98    }
99    #[doc = "Iterator for array of:"]
100    #[doc = "0x150..0x160 - Interrupt status after masking &amp; forcing for proc1"]
101    #[inline(always)]
102    pub fn proc1_ints_iter(&self) -> impl Iterator<Item = &PROC1_INTS> {
103        self.proc1_ints.iter()
104    }
105    #[doc = "0x160..0x170 - Interrupt Enable for dormant_wake"]
106    #[inline(always)]
107    pub const fn dormant_wake_inte(&self, n: usize) -> &DORMANT_WAKE_INTE {
108        &self.dormant_wake_inte[n]
109    }
110    #[doc = "Iterator for array of:"]
111    #[doc = "0x160..0x170 - Interrupt Enable for dormant_wake"]
112    #[inline(always)]
113    pub fn dormant_wake_inte_iter(&self) -> impl Iterator<Item = &DORMANT_WAKE_INTE> {
114        self.dormant_wake_inte.iter()
115    }
116    #[doc = "0x170..0x180 - Interrupt Force for dormant_wake"]
117    #[inline(always)]
118    pub const fn dormant_wake_intf(&self, n: usize) -> &DORMANT_WAKE_INTF {
119        &self.dormant_wake_intf[n]
120    }
121    #[doc = "Iterator for array of:"]
122    #[doc = "0x170..0x180 - Interrupt Force for dormant_wake"]
123    #[inline(always)]
124    pub fn dormant_wake_intf_iter(&self) -> impl Iterator<Item = &DORMANT_WAKE_INTF> {
125        self.dormant_wake_intf.iter()
126    }
127    #[doc = "0x180..0x190 - Interrupt status after masking &amp; forcing for dormant_wake"]
128    #[inline(always)]
129    pub const fn dormant_wake_ints(&self, n: usize) -> &DORMANT_WAKE_INTS {
130        &self.dormant_wake_ints[n]
131    }
132    #[doc = "Iterator for array of:"]
133    #[doc = "0x180..0x190 - Interrupt status after masking &amp; forcing for dormant_wake"]
134    #[inline(always)]
135    pub fn dormant_wake_ints_iter(&self) -> impl Iterator<Item = &DORMANT_WAKE_INTS> {
136        self.dormant_wake_ints.iter()
137    }
138}
139#[doc = "Cluster GPIO%s, containing GPIO*_STATUS, GPIO*_CTRL"]
140pub use self::gpio::GPIO;
141#[doc = r"Cluster"]
142#[doc = "Cluster GPIO%s, containing GPIO*_STATUS, GPIO*_CTRL"]
143pub mod gpio;
144#[doc = "INTR (rw) register accessor: Raw Interrupts  
145
146You can [`read`](crate::generic::Reg::read) this register and get [`intr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`intr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
147
148For information about available fields see [`mod@intr`]
149module"]
150pub type INTR = crate::Reg<intr::INTR_SPEC>;
151#[doc = "Raw Interrupts"]
152pub mod intr;
153#[doc = "PROC0_INTE (rw) register accessor: Interrupt Enable for proc0  
154
155You can [`read`](crate::generic::Reg::read) this register and get [`proc0_inte::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`proc0_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
156
157For information about available fields see [`mod@proc0_inte`]
158module"]
159pub type PROC0_INTE = crate::Reg<proc0_inte::PROC0_INTE_SPEC>;
160#[doc = "Interrupt Enable for proc0"]
161pub mod proc0_inte;
162#[doc = "PROC0_INTF (rw) register accessor: Interrupt Force for proc0  
163
164You can [`read`](crate::generic::Reg::read) this register and get [`proc0_intf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`proc0_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
165
166For information about available fields see [`mod@proc0_intf`]
167module"]
168pub type PROC0_INTF = crate::Reg<proc0_intf::PROC0_INTF_SPEC>;
169#[doc = "Interrupt Force for proc0"]
170pub mod proc0_intf;
171#[doc = "PROC0_INTS (r) register accessor: Interrupt status after masking &amp; forcing for proc0  
172
173You can [`read`](crate::generic::Reg::read) this register and get [`proc0_ints::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
174
175For information about available fields see [`mod@proc0_ints`]
176module"]
177pub type PROC0_INTS = crate::Reg<proc0_ints::PROC0_INTS_SPEC>;
178#[doc = "Interrupt status after masking &amp; forcing for proc0"]
179pub mod proc0_ints;
180#[doc = "PROC1_INTE (rw) register accessor: Interrupt Enable for proc1  
181
182You can [`read`](crate::generic::Reg::read) this register and get [`proc1_inte::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`proc1_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
183
184For information about available fields see [`mod@proc1_inte`]
185module"]
186pub type PROC1_INTE = crate::Reg<proc1_inte::PROC1_INTE_SPEC>;
187#[doc = "Interrupt Enable for proc1"]
188pub mod proc1_inte;
189#[doc = "PROC1_INTF (rw) register accessor: Interrupt Force for proc1  
190
191You can [`read`](crate::generic::Reg::read) this register and get [`proc1_intf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`proc1_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
192
193For information about available fields see [`mod@proc1_intf`]
194module"]
195pub type PROC1_INTF = crate::Reg<proc1_intf::PROC1_INTF_SPEC>;
196#[doc = "Interrupt Force for proc1"]
197pub mod proc1_intf;
198#[doc = "PROC1_INTS (r) register accessor: Interrupt status after masking &amp; forcing for proc1  
199
200You can [`read`](crate::generic::Reg::read) this register and get [`proc1_ints::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
201
202For information about available fields see [`mod@proc1_ints`]
203module"]
204pub type PROC1_INTS = crate::Reg<proc1_ints::PROC1_INTS_SPEC>;
205#[doc = "Interrupt status after masking &amp; forcing for proc1"]
206pub mod proc1_ints;
207#[doc = "DORMANT_WAKE_INTE (rw) register accessor: Interrupt Enable for dormant_wake  
208
209You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_inte::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dormant_wake_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
210
211For information about available fields see [`mod@dormant_wake_inte`]
212module"]
213pub type DORMANT_WAKE_INTE = crate::Reg<dormant_wake_inte::DORMANT_WAKE_INTE_SPEC>;
214#[doc = "Interrupt Enable for dormant_wake"]
215pub mod dormant_wake_inte;
216#[doc = "DORMANT_WAKE_INTF (rw) register accessor: Interrupt Force for dormant_wake  
217
218You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_intf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dormant_wake_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
219
220For information about available fields see [`mod@dormant_wake_intf`]
221module"]
222pub type DORMANT_WAKE_INTF = crate::Reg<dormant_wake_intf::DORMANT_WAKE_INTF_SPEC>;
223#[doc = "Interrupt Force for dormant_wake"]
224pub mod dormant_wake_intf;
225#[doc = "DORMANT_WAKE_INTS (r) register accessor: Interrupt status after masking &amp; forcing for dormant_wake  
226
227You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_ints::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
228
229For information about available fields see [`mod@dormant_wake_ints`]
230module"]
231pub type DORMANT_WAKE_INTS = crate::Reg<dormant_wake_ints::DORMANT_WAKE_INTS_SPEC>;
232#[doc = "Interrupt status after masking &amp; forcing for dormant_wake"]
233pub mod dormant_wake_ints;