aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f334/src
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-28 17:07:08 -0500
committerxoviat <[email protected]>2023-07-28 17:07:08 -0500
commit28136579e98ea4d9745867d7c1ffff0ad826b504 (patch)
treee686356221349b3adf92426558acbc6e2d81b844 /examples/stm32f334/src
parentd42dff45de94522d7a5324773b352266a77f0c2c (diff)
stm32/hrtim: extract into mod
Diffstat (limited to 'examples/stm32f334/src')
-rw-r--r--examples/stm32f334/src/bin/pwm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32f334/src/bin/pwm.rs b/examples/stm32f334/src/bin/pwm.rs
index 364119744..2660b10c5 100644
--- a/examples/stm32f334/src/bin/pwm.rs
+++ b/examples/stm32f334/src/bin/pwm.rs
@@ -4,7 +4,7 @@
4 4
5use defmt::*; 5use defmt::*;
6use embassy_executor::Spawner; 6use embassy_executor::Spawner;
7use embassy_stm32::pwm::advanced_pwm::*; 7use embassy_stm32::hrtim::*;
8use embassy_stm32::time::{khz, mhz}; 8use embassy_stm32::time::{khz, mhz};
9use embassy_stm32::Config; 9use embassy_stm32::Config;
10use embassy_time::{Duration, Timer}; 10use embassy_time::{Duration, Timer};