aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEicke Hecht <[email protected]>2025-11-24 23:03:02 +0100
committerEicke Hecht <[email protected]>2025-11-24 23:03:02 +0100
commitff939095a2a883361346ea0cf6f2b6f9d1d24936 (patch)
treed7cb3124f258d65d045f92791997c3f9f44b7755 /examples
parent96ffbec30a0d17470dd93a6c50f4264060bf1e69 (diff)
fix: Formatting, use nightly...
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32f7/src/bin/pwm.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/stm32f7/src/bin/pwm.rs b/examples/stm32f7/src/bin/pwm.rs
index c1c7ec6ce..b071eb597 100644
--- a/examples/stm32f7/src/bin/pwm.rs
+++ b/examples/stm32f7/src/bin/pwm.rs
@@ -5,8 +5,7 @@ use defmt::*;
5use embassy_executor::Spawner; 5use embassy_executor::Spawner;
6use embassy_stm32::Config; 6use embassy_stm32::Config;
7use embassy_stm32::gpio::OutputType; 7use embassy_stm32::gpio::OutputType;
8use embassy_stm32::time::Hertz; 8use embassy_stm32::time::{Hertz, mhz};
9use embassy_stm32::time::mhz;
10use embassy_stm32::timer::simple_pwm::{PwmPin, SimplePwm}; 9use embassy_stm32::timer::simple_pwm::{PwmPin, SimplePwm};
11use embassy_time::Timer; 10use embassy_time::Timer;
12use {defmt_rtt as _, panic_probe as _}; 11use {defmt_rtt as _, panic_probe as _};