aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-04-05 18:18:05 -0500
committerxoviat <[email protected]>2023-04-05 18:18:05 -0500
commit31ef783ac1add908c4c4506d3ce4e5f6ad9bea56 (patch)
tree712f8337a010b0e50a1744c8bf69634d3b821de4 /examples
parent9f1dac3f5daf61a2d56679d00e018e5e3557c7e5 (diff)
stm32/pwm: fix unused import
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32f4/src/bin/pwm_complementary.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32f4/src/bin/pwm_complementary.rs b/examples/stm32f4/src/bin/pwm_complementary.rs
index 795c38e48..6e17f3fd3 100644
--- a/examples/stm32f4/src/bin/pwm_complementary.rs
+++ b/examples/stm32f4/src/bin/pwm_complementary.rs
@@ -5,7 +5,7 @@
5use defmt::*; 5use defmt::*;
6use embassy_executor::Spawner; 6use embassy_executor::Spawner;
7use embassy_stm32::pwm::complementary_pwm::{Ckd, ComplementaryPwm, ComplementaryPwmPin}; 7use embassy_stm32::pwm::complementary_pwm::{Ckd, ComplementaryPwm, ComplementaryPwmPin};
8use embassy_stm32::pwm::simple_pwm::{PwmPin, SimplePwm}; 8use embassy_stm32::pwm::simple_pwm::PwmPin;
9use embassy_stm32::pwm::Channel; 9use embassy_stm32::pwm::Channel;
10use embassy_stm32::time::khz; 10use embassy_stm32::time::khz;
11use embassy_time::{Duration, Timer}; 11use embassy_time::{Duration, Timer};