esp32/i2s0/
int_raw.rs
1#[doc = "Register `INT_RAW` reader"]
2pub type R = crate::R<INT_RAW_SPEC>;
3#[doc = "Field `RX_TAKE_DATA` reader - "]
4pub type RX_TAKE_DATA_R = crate::BitReader;
5#[doc = "Field `TX_PUT_DATA` reader - "]
6pub type TX_PUT_DATA_R = crate::BitReader;
7#[doc = "Field `RX_WFULL` reader - "]
8pub type RX_WFULL_R = crate::BitReader;
9#[doc = "Field `RX_REMPTY` reader - "]
10pub type RX_REMPTY_R = crate::BitReader;
11#[doc = "Field `TX_WFULL` reader - "]
12pub type TX_WFULL_R = crate::BitReader;
13#[doc = "Field `TX_REMPTY` reader - "]
14pub type TX_REMPTY_R = crate::BitReader;
15#[doc = "Field `RX_HUNG` reader - "]
16pub type RX_HUNG_R = crate::BitReader;
17#[doc = "Field `TX_HUNG` reader - "]
18pub type TX_HUNG_R = crate::BitReader;
19#[doc = "Field `IN_DONE` reader - "]
20pub type IN_DONE_R = crate::BitReader;
21#[doc = "Field `IN_SUC_EOF` reader - "]
22pub type IN_SUC_EOF_R = crate::BitReader;
23#[doc = "Field `IN_ERR_EOF` reader - "]
24pub type IN_ERR_EOF_R = crate::BitReader;
25#[doc = "Field `OUT_DONE` reader - "]
26pub type OUT_DONE_R = crate::BitReader;
27#[doc = "Field `OUT_EOF` reader - "]
28pub type OUT_EOF_R = crate::BitReader;
29#[doc = "Field `IN_DSCR_ERR` reader - "]
30pub type IN_DSCR_ERR_R = crate::BitReader;
31#[doc = "Field `OUT_DSCR_ERR` reader - "]
32pub type OUT_DSCR_ERR_R = crate::BitReader;
33#[doc = "Field `IN_DSCR_EMPTY` reader - "]
34pub type IN_DSCR_EMPTY_R = crate::BitReader;
35#[doc = "Field `OUT_TOTAL_EOF` reader - "]
36pub type OUT_TOTAL_EOF_R = crate::BitReader;
37impl R {
38 #[doc = "Bit 0"]
39 #[inline(always)]
40 pub fn rx_take_data(&self) -> RX_TAKE_DATA_R {
41 RX_TAKE_DATA_R::new((self.bits & 1) != 0)
42 }
43 #[doc = "Bit 1"]
44 #[inline(always)]
45 pub fn tx_put_data(&self) -> TX_PUT_DATA_R {
46 TX_PUT_DATA_R::new(((self.bits >> 1) & 1) != 0)
47 }
48 #[doc = "Bit 2"]
49 #[inline(always)]
50 pub fn rx_wfull(&self) -> RX_WFULL_R {
51 RX_WFULL_R::new(((self.bits >> 2) & 1) != 0)
52 }
53 #[doc = "Bit 3"]
54 #[inline(always)]
55 pub fn rx_rempty(&self) -> RX_REMPTY_R {
56 RX_REMPTY_R::new(((self.bits >> 3) & 1) != 0)
57 }
58 #[doc = "Bit 4"]
59 #[inline(always)]
60 pub fn tx_wfull(&self) -> TX_WFULL_R {
61 TX_WFULL_R::new(((self.bits >> 4) & 1) != 0)
62 }
63 #[doc = "Bit 5"]
64 #[inline(always)]
65 pub fn tx_rempty(&self) -> TX_REMPTY_R {
66 TX_REMPTY_R::new(((self.bits >> 5) & 1) != 0)
67 }
68 #[doc = "Bit 6"]
69 #[inline(always)]
70 pub fn rx_hung(&self) -> RX_HUNG_R {
71 RX_HUNG_R::new(((self.bits >> 6) & 1) != 0)
72 }
73 #[doc = "Bit 7"]
74 #[inline(always)]
75 pub fn tx_hung(&self) -> TX_HUNG_R {
76 TX_HUNG_R::new(((self.bits >> 7) & 1) != 0)
77 }
78 #[doc = "Bit 8"]
79 #[inline(always)]
80 pub fn in_done(&self) -> IN_DONE_R {
81 IN_DONE_R::new(((self.bits >> 8) & 1) != 0)
82 }
83 #[doc = "Bit 9"]
84 #[inline(always)]
85 pub fn in_suc_eof(&self) -> IN_SUC_EOF_R {
86 IN_SUC_EOF_R::new(((self.bits >> 9) & 1) != 0)
87 }
88 #[doc = "Bit 10"]
89 #[inline(always)]
90 pub fn in_err_eof(&self) -> IN_ERR_EOF_R {
91 IN_ERR_EOF_R::new(((self.bits >> 10) & 1) != 0)
92 }
93 #[doc = "Bit 11"]
94 #[inline(always)]
95 pub fn out_done(&self) -> OUT_DONE_R {
96 OUT_DONE_R::new(((self.bits >> 11) & 1) != 0)
97 }
98 #[doc = "Bit 12"]
99 #[inline(always)]
100 pub fn out_eof(&self) -> OUT_EOF_R {
101 OUT_EOF_R::new(((self.bits >> 12) & 1) != 0)
102 }
103 #[doc = "Bit 13"]
104 #[inline(always)]
105 pub fn in_dscr_err(&self) -> IN_DSCR_ERR_R {
106 IN_DSCR_ERR_R::new(((self.bits >> 13) & 1) != 0)
107 }
108 #[doc = "Bit 14"]
109 #[inline(always)]
110 pub fn out_dscr_err(&self) -> OUT_DSCR_ERR_R {
111 OUT_DSCR_ERR_R::new(((self.bits >> 14) & 1) != 0)
112 }
113 #[doc = "Bit 15"]
114 #[inline(always)]
115 pub fn in_dscr_empty(&self) -> IN_DSCR_EMPTY_R {
116 IN_DSCR_EMPTY_R::new(((self.bits >> 15) & 1) != 0)
117 }
118 #[doc = "Bit 16"]
119 #[inline(always)]
120 pub fn out_total_eof(&self) -> OUT_TOTAL_EOF_R {
121 OUT_TOTAL_EOF_R::new(((self.bits >> 16) & 1) != 0)
122 }
123}
124#[cfg(feature = "impl-register-debug")]
125impl core::fmt::Debug for R {
126 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
127 f.debug_struct("INT_RAW")
128 .field("rx_take_data", &self.rx_take_data())
129 .field("tx_put_data", &self.tx_put_data())
130 .field("rx_wfull", &self.rx_wfull())
131 .field("rx_rempty", &self.rx_rempty())
132 .field("tx_wfull", &self.tx_wfull())
133 .field("tx_rempty", &self.tx_rempty())
134 .field("rx_hung", &self.rx_hung())
135 .field("tx_hung", &self.tx_hung())
136 .field("in_done", &self.in_done())
137 .field("in_suc_eof", &self.in_suc_eof())
138 .field("in_err_eof", &self.in_err_eof())
139 .field("out_done", &self.out_done())
140 .field("out_eof", &self.out_eof())
141 .field("in_dscr_err", &self.in_dscr_err())
142 .field("out_dscr_err", &self.out_dscr_err())
143 .field("in_dscr_empty", &self.in_dscr_empty())
144 .field("out_total_eof", &self.out_total_eof())
145 .finish()
146 }
147}
148#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`int_raw::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
149pub struct INT_RAW_SPEC;
150impl crate::RegisterSpec for INT_RAW_SPEC {
151 type Ux = u32;
152}
153#[doc = "`read()` method returns [`int_raw::R`](R) reader structure"]
154impl crate::Readable for INT_RAW_SPEC {}
155#[doc = "`reset()` method sets INT_RAW to value 0"]
156impl crate::Resettable for INT_RAW_SPEC {
157 const RESET_VALUE: u32 = 0;
158}