rp2040_pac/usbctrl_regs/
intr.rs

1#[doc = "Register `INTR` reader"]
2pub type R = crate::R<INTR_SPEC>;
3#[doc = "Field `HOST_CONN_DIS` reader - Host: raised when a device is connected or disconnected (i.e. when SIE_STATUS.SPEED changes). Cleared by writing to SIE_STATUS.SPEED"]
4pub type HOST_CONN_DIS_R = crate::BitReader;
5#[doc = "Field `HOST_RESUME` reader - Host: raised when a device wakes up the host. Cleared by writing to SIE_STATUS.RESUME"]
6pub type HOST_RESUME_R = crate::BitReader;
7#[doc = "Field `HOST_SOF` reader - Host: raised every time the host sends a SOF (Start of Frame). Cleared by reading SOF_RD"]
8pub type HOST_SOF_R = crate::BitReader;
9#[doc = "Field `TRANS_COMPLETE` reader - Raised every time SIE_STATUS.TRANS_COMPLETE is set. Clear by writing to this bit."]
10pub type TRANS_COMPLETE_R = crate::BitReader;
11#[doc = "Field `BUFF_STATUS` reader - Raised when any bit in BUFF_STATUS is set. Clear by clearing all bits in BUFF_STATUS."]
12pub type BUFF_STATUS_R = crate::BitReader;
13#[doc = "Field `ERROR_DATA_SEQ` reader - Source: SIE_STATUS.DATA_SEQ_ERROR"]
14pub type ERROR_DATA_SEQ_R = crate::BitReader;
15#[doc = "Field `ERROR_RX_TIMEOUT` reader - Source: SIE_STATUS.RX_TIMEOUT"]
16pub type ERROR_RX_TIMEOUT_R = crate::BitReader;
17#[doc = "Field `ERROR_RX_OVERFLOW` reader - Source: SIE_STATUS.RX_OVERFLOW"]
18pub type ERROR_RX_OVERFLOW_R = crate::BitReader;
19#[doc = "Field `ERROR_BIT_STUFF` reader - Source: SIE_STATUS.BIT_STUFF_ERROR"]
20pub type ERROR_BIT_STUFF_R = crate::BitReader;
21#[doc = "Field `ERROR_CRC` reader - Source: SIE_STATUS.CRC_ERROR"]
22pub type ERROR_CRC_R = crate::BitReader;
23#[doc = "Field `STALL` reader - Source: SIE_STATUS.STALL_REC"]
24pub type STALL_R = crate::BitReader;
25#[doc = "Field `VBUS_DETECT` reader - Source: SIE_STATUS.VBUS_DETECTED"]
26pub type VBUS_DETECT_R = crate::BitReader;
27#[doc = "Field `BUS_RESET` reader - Source: SIE_STATUS.BUS_RESET"]
28pub type BUS_RESET_R = crate::BitReader;
29#[doc = "Field `DEV_CONN_DIS` reader - Set when the device connection state changes. Cleared by writing to SIE_STATUS.CONNECTED"]
30pub type DEV_CONN_DIS_R = crate::BitReader;
31#[doc = "Field `DEV_SUSPEND` reader - Set when the device suspend state changes. Cleared by writing to SIE_STATUS.SUSPENDED"]
32pub type DEV_SUSPEND_R = crate::BitReader;
33#[doc = "Field `DEV_RESUME_FROM_HOST` reader - Set when the device receives a resume from the host. Cleared by writing to SIE_STATUS.RESUME"]
34pub type DEV_RESUME_FROM_HOST_R = crate::BitReader;
35#[doc = "Field `SETUP_REQ` reader - Device. Source: SIE_STATUS.SETUP_REC"]
36pub type SETUP_REQ_R = crate::BitReader;
37#[doc = "Field `DEV_SOF` reader - Set every time the device receives a SOF (Start of Frame) packet. Cleared by reading SOF_RD"]
38pub type DEV_SOF_R = crate::BitReader;
39#[doc = "Field `ABORT_DONE` reader - Raised when any bit in ABORT_DONE is set. Clear by clearing all bits in ABORT_DONE."]
40pub type ABORT_DONE_R = crate::BitReader;
41#[doc = "Field `EP_STALL_NAK` reader - Raised when any bit in EP_STATUS_STALL_NAK is set. Clear by clearing all bits in EP_STATUS_STALL_NAK."]
42pub type EP_STALL_NAK_R = crate::BitReader;
43impl R {
44    #[doc = "Bit 0 - Host: raised when a device is connected or disconnected (i.e. when SIE_STATUS.SPEED changes). Cleared by writing to SIE_STATUS.SPEED"]
45    #[inline(always)]
46    pub fn host_conn_dis(&self) -> HOST_CONN_DIS_R {
47        HOST_CONN_DIS_R::new((self.bits & 1) != 0)
48    }
49    #[doc = "Bit 1 - Host: raised when a device wakes up the host. Cleared by writing to SIE_STATUS.RESUME"]
50    #[inline(always)]
51    pub fn host_resume(&self) -> HOST_RESUME_R {
52        HOST_RESUME_R::new(((self.bits >> 1) & 1) != 0)
53    }
54    #[doc = "Bit 2 - Host: raised every time the host sends a SOF (Start of Frame). Cleared by reading SOF_RD"]
55    #[inline(always)]
56    pub fn host_sof(&self) -> HOST_SOF_R {
57        HOST_SOF_R::new(((self.bits >> 2) & 1) != 0)
58    }
59    #[doc = "Bit 3 - Raised every time SIE_STATUS.TRANS_COMPLETE is set. Clear by writing to this bit."]
60    #[inline(always)]
61    pub fn trans_complete(&self) -> TRANS_COMPLETE_R {
62        TRANS_COMPLETE_R::new(((self.bits >> 3) & 1) != 0)
63    }
64    #[doc = "Bit 4 - Raised when any bit in BUFF_STATUS is set. Clear by clearing all bits in BUFF_STATUS."]
65    #[inline(always)]
66    pub fn buff_status(&self) -> BUFF_STATUS_R {
67        BUFF_STATUS_R::new(((self.bits >> 4) & 1) != 0)
68    }
69    #[doc = "Bit 5 - Source: SIE_STATUS.DATA_SEQ_ERROR"]
70    #[inline(always)]
71    pub fn error_data_seq(&self) -> ERROR_DATA_SEQ_R {
72        ERROR_DATA_SEQ_R::new(((self.bits >> 5) & 1) != 0)
73    }
74    #[doc = "Bit 6 - Source: SIE_STATUS.RX_TIMEOUT"]
75    #[inline(always)]
76    pub fn error_rx_timeout(&self) -> ERROR_RX_TIMEOUT_R {
77        ERROR_RX_TIMEOUT_R::new(((self.bits >> 6) & 1) != 0)
78    }
79    #[doc = "Bit 7 - Source: SIE_STATUS.RX_OVERFLOW"]
80    #[inline(always)]
81    pub fn error_rx_overflow(&self) -> ERROR_RX_OVERFLOW_R {
82        ERROR_RX_OVERFLOW_R::new(((self.bits >> 7) & 1) != 0)
83    }
84    #[doc = "Bit 8 - Source: SIE_STATUS.BIT_STUFF_ERROR"]
85    #[inline(always)]
86    pub fn error_bit_stuff(&self) -> ERROR_BIT_STUFF_R {
87        ERROR_BIT_STUFF_R::new(((self.bits >> 8) & 1) != 0)
88    }
89    #[doc = "Bit 9 - Source: SIE_STATUS.CRC_ERROR"]
90    #[inline(always)]
91    pub fn error_crc(&self) -> ERROR_CRC_R {
92        ERROR_CRC_R::new(((self.bits >> 9) & 1) != 0)
93    }
94    #[doc = "Bit 10 - Source: SIE_STATUS.STALL_REC"]
95    #[inline(always)]
96    pub fn stall(&self) -> STALL_R {
97        STALL_R::new(((self.bits >> 10) & 1) != 0)
98    }
99    #[doc = "Bit 11 - Source: SIE_STATUS.VBUS_DETECTED"]
100    #[inline(always)]
101    pub fn vbus_detect(&self) -> VBUS_DETECT_R {
102        VBUS_DETECT_R::new(((self.bits >> 11) & 1) != 0)
103    }
104    #[doc = "Bit 12 - Source: SIE_STATUS.BUS_RESET"]
105    #[inline(always)]
106    pub fn bus_reset(&self) -> BUS_RESET_R {
107        BUS_RESET_R::new(((self.bits >> 12) & 1) != 0)
108    }
109    #[doc = "Bit 13 - Set when the device connection state changes. Cleared by writing to SIE_STATUS.CONNECTED"]
110    #[inline(always)]
111    pub fn dev_conn_dis(&self) -> DEV_CONN_DIS_R {
112        DEV_CONN_DIS_R::new(((self.bits >> 13) & 1) != 0)
113    }
114    #[doc = "Bit 14 - Set when the device suspend state changes. Cleared by writing to SIE_STATUS.SUSPENDED"]
115    #[inline(always)]
116    pub fn dev_suspend(&self) -> DEV_SUSPEND_R {
117        DEV_SUSPEND_R::new(((self.bits >> 14) & 1) != 0)
118    }
119    #[doc = "Bit 15 - Set when the device receives a resume from the host. Cleared by writing to SIE_STATUS.RESUME"]
120    #[inline(always)]
121    pub fn dev_resume_from_host(&self) -> DEV_RESUME_FROM_HOST_R {
122        DEV_RESUME_FROM_HOST_R::new(((self.bits >> 15) & 1) != 0)
123    }
124    #[doc = "Bit 16 - Device. Source: SIE_STATUS.SETUP_REC"]
125    #[inline(always)]
126    pub fn setup_req(&self) -> SETUP_REQ_R {
127        SETUP_REQ_R::new(((self.bits >> 16) & 1) != 0)
128    }
129    #[doc = "Bit 17 - Set every time the device receives a SOF (Start of Frame) packet. Cleared by reading SOF_RD"]
130    #[inline(always)]
131    pub fn dev_sof(&self) -> DEV_SOF_R {
132        DEV_SOF_R::new(((self.bits >> 17) & 1) != 0)
133    }
134    #[doc = "Bit 18 - Raised when any bit in ABORT_DONE is set. Clear by clearing all bits in ABORT_DONE."]
135    #[inline(always)]
136    pub fn abort_done(&self) -> ABORT_DONE_R {
137        ABORT_DONE_R::new(((self.bits >> 18) & 1) != 0)
138    }
139    #[doc = "Bit 19 - Raised when any bit in EP_STATUS_STALL_NAK is set. Clear by clearing all bits in EP_STATUS_STALL_NAK."]
140    #[inline(always)]
141    pub fn ep_stall_nak(&self) -> EP_STALL_NAK_R {
142        EP_STALL_NAK_R::new(((self.bits >> 19) & 1) != 0)
143    }
144}
145#[doc = "Raw Interrupts  
146
147You can [`read`](crate::generic::Reg::read) this register and get [`intr::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
148pub struct INTR_SPEC;
149impl crate::RegisterSpec for INTR_SPEC {
150    type Ux = u32;
151}
152#[doc = "`read()` method returns [`intr::R`](R) reader structure"]
153impl crate::Readable for INTR_SPEC {}
154#[doc = "`reset()` method sets INTR to value 0"]
155impl crate::Resettable for INTR_SPEC {
156    const RESET_VALUE: u32 = 0;
157}