rp2040_pac/
usbctrl_dpram.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    setup_packet_low: SETUP_PACKET_LOW,
5    setup_packet_high: SETUP_PACKET_HIGH,
6    ep_control: [EP_CONTROL; 30],
7    ep_buffer_control: [EP_BUFFER_CONTROL; 32],
8    epx_control: EPX_CONTROL,
9}
10impl RegisterBlock {
11    #[doc = "0x00 - Bytes 0-3 of the SETUP packet from the host."]
12    #[inline(always)]
13    pub const fn setup_packet_low(&self) -> &SETUP_PACKET_LOW {
14        &self.setup_packet_low
15    }
16    #[doc = "0x04 - Bytes 4-7 of the setup packet from the host."]
17    #[inline(always)]
18    pub const fn setup_packet_high(&self) -> &SETUP_PACKET_HIGH {
19        &self.setup_packet_high
20    }
21    #[doc = "0x08..0x80 - -"]
22    #[inline(always)]
23    pub const fn ep_control(&self, n: usize) -> &EP_CONTROL {
24        &self.ep_control[n]
25    }
26    #[doc = "Iterator for array of:"]
27    #[doc = "0x08..0x80 - -"]
28    #[inline(always)]
29    pub fn ep_control_iter(&self) -> impl Iterator<Item = &EP_CONTROL> {
30        self.ep_control.iter()
31    }
32    #[doc = "0x80..0x100 - -"]
33    #[inline(always)]
34    pub const fn ep_buffer_control(&self, n: usize) -> &EP_BUFFER_CONTROL {
35        &self.ep_buffer_control[n]
36    }
37    #[doc = "Iterator for array of:"]
38    #[doc = "0x80..0x100 - -"]
39    #[inline(always)]
40    pub fn ep_buffer_control_iter(&self) -> impl Iterator<Item = &EP_BUFFER_CONTROL> {
41        self.ep_buffer_control.iter()
42    }
43    #[doc = "0x100 - EPx Control (Host-mode only!)"]
44    #[inline(always)]
45    pub const fn epx_control(&self) -> &EPX_CONTROL {
46        &self.epx_control
47    }
48}
49#[doc = "SETUP_PACKET_LOW (rw) register accessor: Bytes 0-3 of the SETUP packet from the host.  
50
51You can [`read`](crate::generic::Reg::read) this register and get [`setup_packet_low::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 [`setup_packet_low::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
52
53For information about available fields see [`mod@setup_packet_low`]
54module"]
55pub type SETUP_PACKET_LOW = crate::Reg<setup_packet_low::SETUP_PACKET_LOW_SPEC>;
56#[doc = "Bytes 0-3 of the SETUP packet from the host."]
57pub mod setup_packet_low;
58#[doc = "SETUP_PACKET_HIGH (rw) register accessor: Bytes 4-7 of the setup packet from the host.  
59
60You can [`read`](crate::generic::Reg::read) this register and get [`setup_packet_high::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 [`setup_packet_high::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
61
62For information about available fields see [`mod@setup_packet_high`]
63module"]
64pub type SETUP_PACKET_HIGH = crate::Reg<setup_packet_high::SETUP_PACKET_HIGH_SPEC>;
65#[doc = "Bytes 4-7 of the setup packet from the host."]
66pub mod setup_packet_high;
67#[doc = "EP_CONTROL (rw) register accessor: -  
68
69You can [`read`](crate::generic::Reg::read) this register and get [`ep_control::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 [`ep_control::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
70
71For information about available fields see [`mod@ep_control`]
72module"]
73pub type EP_CONTROL = crate::Reg<ep_control::EP_CONTROL_SPEC>;
74#[doc = "-"]
75pub mod ep_control;
76#[doc = "EP_BUFFER_CONTROL (rw) register accessor: -  
77
78You can [`read`](crate::generic::Reg::read) this register and get [`ep_buffer_control::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 [`ep_buffer_control::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
79
80For information about available fields see [`mod@ep_buffer_control`]
81module"]
82pub type EP_BUFFER_CONTROL = crate::Reg<ep_buffer_control::EP_BUFFER_CONTROL_SPEC>;
83#[doc = "-"]
84pub mod ep_buffer_control;
85#[doc = "EPX_CONTROL (rw) register accessor: EPx Control (Host-mode only!)  
86
87You can [`read`](crate::generic::Reg::read) this register and get [`epx_control::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 [`epx_control::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
88
89For information about available fields see [`mod@epx_control`]
90module"]
91pub type EPX_CONTROL = crate::Reg<epx_control::EPX_CONTROL_SPEC>;
92#[doc = "EPx Control (Host-mode only!)"]
93pub mod epx_control;