aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Jamison <[email protected]>2024-02-22 06:21:40 -0500
committerCaleb Jamison <[email protected]>2024-02-22 06:21:40 -0500
commit89986fe967da4b1f94c57a11e57928b574536c92 (patch)
tree60a51d1d0a08328356f6f9ed34012255d75593b4
parent5ddee8586a3d98b4996278fefc1ef047f1367280 (diff)
Fixup display -> debug
-rw-r--r--embassy-rp/src/i2c.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/i2c.rs b/embassy-rp/src/i2c.rs
index 85636f5fe..3b74d8501 100644
--- a/embassy-rp/src/i2c.rs
+++ b/embassy-rp/src/i2c.rs
@@ -388,7 +388,7 @@ impl<'d, T: Instance + 'd, M: Mode> I2c<'d, T, M> {
388 let mut me = Self { phantom: PhantomData }; 388 let mut me = Self { phantom: PhantomData };
389 389
390 if let Err(e) = me.set_config_inner(&config) { 390 if let Err(e) = me.set_config_inner(&config) {
391 panic!("Error configuring i2c: {}", e); 391 panic!("Error configuring i2c: {:?}", e);
392 } 392 }
393 393
394 me 394 me