use core::marker::PhantomData; use embassy_hal_common::{into_ref, PeripheralRef}; use stm32_metapac::timer::vals::Ckd; use super::simple_pwm::*; use super::*; #[allow(unused_imports)] use crate::gpio::sealed::{AFType, Pin}; use crate::gpio::AnyPin; use crate::time::Hertz; use crate::Peripheral; pub struct ComplementaryPwmPin<'d, Perip, Channel> { _pin: PeripheralRef<'d, AnyPin>, phantom: PhantomData<(Perip, Channel)>, } macro_rules! complementary_channel_impl { ($new_chx:ident, $channel:ident, $pin_trait:ident, $complementary_pin_trait:ident) => { impl<'d, Perip: CaptureCompare16bitInstance> ComplementaryPwmPin<'d, Perip, $channel> { pub fn $new_chx(pin: impl Peripheral
> + 'd) -> Self { into_ref!(pin); 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); }); ComplementaryPwmPin { _pin: pin.map_into(), phantom: PhantomData, } } } }; } complementary_channel_impl!(new_ch1, Ch1, Channel1Pin, Channel1ComplementaryPin); complementary_channel_impl!(new_ch2, Ch2, Channel2Pin, Channel2ComplementaryPin); complementary_channel_impl!(new_ch3, Ch3, Channel3Pin, Channel3ComplementaryPin); complementary_channel_impl!(new_ch4, Ch4, Channel4Pin, Channel4ComplementaryPin); pub struct ComplementaryPwm<'d, T> { inner: PeripheralRef<'d, T>, } impl<'d, T: ComplementaryCaptureCompare16bitInstance> ComplementaryPwm<'d, T> { pub fn new( tim: impl Peripheral
+ 'd,
_ch1: Option + 'd, freq: Hertz) -> Self {
into_ref!(tim);
T::enable();