You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: esp32p4/src/i3c_mst.rs
+6-6
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ pub struct RegisterBlock {
12
12
int_clr:INT_CLR,
13
13
int_raw:INT_RAW,
14
14
int_st:INT_ST,
15
-
int_st_ena:INT_ST_ENA,
15
+
int_ena:INT_ENA,
16
16
_reserved10:[u8;0x04],
17
17
reset_ctrl:RESET_CTRL,
18
18
buffer_status_level:BUFFER_STATUS_LEVEL,
@@ -92,8 +92,8 @@ impl RegisterBlock {
92
92
}
93
93
#[doc = "0x3c - The Interrupt status will be updated in INTR_STATUS register if corresponding Status Enable bit set."]
94
94
#[inline(always)]
95
-
pubconstfnint_st_ena(&self) -> &INT_ST_ENA{
96
-
&self.int_st_ena
95
+
pubconstfnint_ena(&self) -> &INT_ENA{
96
+
&self.int_ena
97
97
}
98
98
#[doc = "0x44 - NA"]
99
99
#[inline(always)]
@@ -262,10 +262,10 @@ pub mod int_raw;
262
262
pubtypeINT_ST = crate::Reg<int_st::INT_ST_SPEC>;
263
263
#[doc = "NA"]
264
264
pubmod int_st;
265
-
#[doc = "INT_ST_ENA (rw) register accessor: The Interrupt status will be updated in INTR_STATUS register if corresponding Status Enable bit set.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`int_st_ena::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 [`int_st_ena::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_st_ena`] module"]
#[doc = "INT_ENA (rw) register accessor: The Interrupt status will be updated in INTR_STATUS register if corresponding Status Enable bit set.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`int_ena::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 [`int_ena::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_ena`] module"]
#[doc = "The Interrupt status will be updated in INTR_STATUS register if corresponding Status Enable bit set."]
268
-
pubmodint_st_ena;
268
+
pubmodint_ena;
269
269
#[doc = "RESET_CTRL (rw) register accessor: NA\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`reset_ctrl::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 [`reset_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@reset_ctrl`] module"]
#[doc = "NA\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`int_clr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
@@ -145,7 +145,7 @@ impl crate::RegisterSpec for INT_CLR_SPEC {
145
145
implcrate::WritableforINT_CLR_SPEC{
146
146
typeSafety = crate::Unsafe;
147
147
constZERO_TO_MODIFY_FIELDS_BITMAP:u32 = 0;
148
-
constONE_TO_MODIFY_FIELDS_BITMAP:u32 = 0;
148
+
constONE_TO_MODIFY_FIELDS_BITMAP:u32 = 0xffff;
149
149
}
150
150
#[doc = "`reset()` method sets INT_CLR to value 0"]
0 commit comments