aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Kröger <[email protected]>2023-01-05 22:00:44 +0100
committerTimo Kröger <[email protected]>2023-01-05 22:00:44 +0100
commit539f97da535edaf7607890658b21223ff6e02cdf (patch)
tree26cf9bdcc71fee12720f2f551c27466e10b0dc8d
parent1096a9746c0843e4a26fcec3fca7f9d6d9d57f01 (diff)
rp: Fix formatting string to please CI
-rw-r--r--embassy-rp/src/uart/buffered.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/uart/buffered.rs b/embassy-rp/src/uart/buffered.rs
index b9fc33eae..0da5bfca1 100644
--- a/embassy-rp/src/uart/buffered.rs
+++ b/embassy-rp/src/uart/buffered.rs
@@ -348,7 +348,7 @@ pub(crate) unsafe fn on_interrupt<T: Instance>(_: *mut ()) {
348 w.set_oeic(ris.oeris()); 348 w.set_oeic(ris.oeris());
349 }); 349 });
350 350
351 trace!("on_interrupt ris={=u32:#X}", ris.0); 351 trace!("on_interrupt ris={:#X}", ris.0);
352 352
353 // Errors 353 // Errors
354 if ris.feris() { 354 if ris.feris() {