aboutsummaryrefslogtreecommitdiff
path: root/examples/rp235x/src/bin
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-05-12 21:43:17 +0200
committer1-rafael-1 <[email protected]>2025-05-12 21:43:17 +0200
commitabafbed0d5fba70ab5d0096b9d381577d2f880c8 (patch)
treef041e4a6df35059b4338f085248373b377b27a3f /examples/rp235x/src/bin
parentbe1b679d48b5d781f888fb97c1fed7479235019b (diff)
remove Debug2Fmt from examples
Diffstat (limited to 'examples/rp235x/src/bin')
-rw-r--r--examples/rp235x/src/bin/overclock.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rp235x/src/bin/overclock.rs b/examples/rp235x/src/bin/overclock.rs
index 178fd62ca..5fd97ef97 100644
--- a/examples/rp235x/src/bin/overclock.rs
+++ b/examples/rp235x/src/bin/overclock.rs
@@ -38,7 +38,7 @@ async fn main(_spawner: Spawner) -> ! {
38 info!("System clock frequency: {} MHz", sys_freq / 1_000_000); 38 info!("System clock frequency: {} MHz", sys_freq / 1_000_000);
39 // Show core voltage for verification 39 // Show core voltage for verification
40 let core_voltage = core_voltage().unwrap(); 40 let core_voltage = core_voltage().unwrap();
41 info!("Core voltage: {}", Debug2Format(&core_voltage)); 41 info!("Core voltage: {}", core_voltage);
42 42
43 // LED to indicate the system is running 43 // LED to indicate the system is running
44 let mut led = Output::new(p.PIN_25, Level::Low); 44 let mut led = Output::new(p.PIN_25, Level::Low);