use embassy_hal_common::{into_ref, PeripheralRef}; use super::*; #[allow(unused_imports)] use crate::gpio::sealed::{AFType, Pin}; use crate::time::Hertz; use crate::Peripheral; pub struct SimplePwm<'d, T> { inner: PeripheralRef<'d, T>, } macro_rules! config_pins { ($($pin:ident),*) => { into_ref!($($pin),*); // NOTE(unsafe) Exclusive access to the registers critical_section::with(|_| unsafe { $( $pin.set_low(); $pin.set_as_af($pin.af_num(), AFType::OutputPushPull); #[cfg(gpio_v2)] $pin.set_speed(crate::gpio::Speed::VeryHigh); )* }) }; } impl<'d, T: CaptureCompare16bitInstance> SimplePwm<'d, T> { pub fn new_1ch( tim: impl Peripheral
+ 'd, ch1: impl Peripheral
> + 'd, freq: Hertz, ) -> Self { Self::new_inner(tim, freq, move || { config_pins!(ch1); }) } pub fn new_2ch( tim: impl Peripheral
+ 'd, ch1: impl Peripheral
> + 'd, ch2: impl Peripheral
> + 'd, freq: Hertz, ) -> Self { Self::new_inner(tim, freq, move || { config_pins!(ch1, ch2); }) } pub fn new_3ch( tim: impl Peripheral
+ 'd, ch1: impl Peripheral
> + 'd, ch2: impl Peripheral
> + 'd, ch3: impl Peripheral
> + 'd, freq: Hertz, ) -> Self { Self::new_inner(tim, freq, move || { config_pins!(ch1, ch2, ch3); }) } pub fn new_4ch( tim: impl Peripheral
+ 'd, ch1: impl Peripheral
> + 'd, ch2: impl Peripheral
> + 'd, ch3: impl Peripheral
> + 'd, ch4: impl Peripheral
> + 'd, freq: Hertz, ) -> Self { Self::new_inner(tim, freq, move || { config_pins!(ch1, ch2, ch3, ch4); }) } fn new_inner(tim: impl Peripheral
+ 'd, freq: Hertz, configure_pins: impl FnOnce()) -> Self {
into_ref!(tim);
T::enable();