aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/timer/simple_pwm.rs
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 /embassy-stm32/src/timer/simple_pwm.rs
parent96ffbec30a0d17470dd93a6c50f4264060bf1e69 (diff)
fix: Formatting, use nightly...
Diffstat (limited to 'embassy-stm32/src/timer/simple_pwm.rs')
-rw-r--r--embassy-stm32/src/timer/simple_pwm.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/embassy-stm32/src/timer/simple_pwm.rs b/embassy-stm32/src/timer/simple_pwm.rs
index 8b738741a..bbe7ef595 100644
--- a/embassy-stm32/src/timer/simple_pwm.rs
+++ b/embassy-stm32/src/timer/simple_pwm.rs
@@ -7,10 +7,9 @@ use super::low_level::{CountingMode, OutputCompareMode, OutputPolarity, Timer};
7use super::ringbuffered::RingBufferedPwmChannel; 7use super::ringbuffered::RingBufferedPwmChannel;
8use super::{Ch1, Ch2, Ch3, Ch4, Channel, GeneralInstance4Channel, TimerChannel, TimerPin}; 8use super::{Ch1, Ch2, Ch3, Ch4, Channel, GeneralInstance4Channel, TimerChannel, TimerPin};
9use crate::Peri; 9use crate::Peri;
10use crate::dma::TransferOptions;
11use crate::dma::WritableRingBuffer;
12#[cfg(not(any(bdma, gpdma)))] 10#[cfg(not(any(bdma, gpdma)))]
13use crate::dma::{Burst, FifoThreshold}; 11use crate::dma::{Burst, FifoThreshold};
12use crate::dma::{TransferOptions, WritableRingBuffer};
14#[cfg(gpio_v2)] 13#[cfg(gpio_v2)]
15use crate::gpio::Pull; 14use crate::gpio::Pull;
16use crate::gpio::{AfType, AnyPin, OutputType, Speed}; 15use crate::gpio::{AfType, AnyPin, OutputType, Speed};