aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-06-17 10:50:06 -0500
committerxoviat <[email protected]>2023-06-17 10:50:06 -0500
commit4c9b7befaa498e491f34140e1497dcb98da62713 (patch)
tree9591abd608830c0dc6cc15ec54b2a617e8c92fa5
parent6ef060ca1719216751811336ebc4d41247daaeff (diff)
stm32/ipcc: add clear debug
-rw-r--r--embassy-stm32/src/ipcc.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-stm32/src/ipcc.rs b/embassy-stm32/src/ipcc.rs
index 8bb0774b8..28f51baa5 100644
--- a/embassy-stm32/src/ipcc.rs
+++ b/embassy-stm32/src/ipcc.rs
@@ -111,6 +111,7 @@ impl Ipcc {
111 pub fn c1_clear_flag_channel(channel: IpccChannel) { 111 pub fn c1_clear_flag_channel(channel: IpccChannel) {
112 let regs = IPCC::regs(); 112 let regs = IPCC::regs();
113 113
114 trace!("ipcc: ch {}: clear rx", channel as u8);
114 unsafe { regs.cpu(0).scr().write(|w| w.set_chc(channel as usize, true)) } 115 unsafe { regs.cpu(0).scr().write(|w| w.set_chc(channel as usize, true)) }
115 } 116 }
116 117