use core::marker::PhantomData; use embassy_hal_common::{into_ref, PeripheralRef}; use super::*; #[allow(unused_imports)] use crate::gpio::sealed::{AFType, Pin}; use crate::gpio::AnyPin; use crate::time::Hertz; use crate::Peripheral; // Re-implement the channels for hrtim pub struct Master { phantom: PhantomData, } pub struct ChA { phantom: PhantomData, } pub struct ChB { phantom: PhantomData, } pub struct ChC { phantom: PhantomData, } pub struct ChD { phantom: PhantomData, } pub struct ChE { phantom: PhantomData, } mod sealed { use crate::pwm::AdvancedCaptureCompare16bitInstance; pub trait AdvancedChannel {} } pub trait AdvancedChannel: sealed::AdvancedChannel { fn raw() -> usize; } pub struct PwmPin<'d, Perip, Channel> { _pin: PeripheralRef<'d, AnyPin>, phantom: PhantomData<(Perip, Channel)>, } pub struct ComplementaryPwmPin<'d, Perip, Channel> { _pin: PeripheralRef<'d, AnyPin>, phantom: PhantomData<(Perip, Channel)>, } macro_rules! advanced_channel_impl { ($new_chx:ident, $channel:tt, $ch_num:expr, $pin_trait:ident, $complementary_pin_trait:ident) => { impl<'d, Perip: AdvancedCaptureCompare16bitInstance> PwmPin<'d, Perip, $channel> { pub fn $new_chx(pin: impl Peripheral

> + 'd) -> Self { into_ref!(pin); critical_section::with(|_| { pin.set_low(); pin.set_as_af(pin.af_num(), AFType::OutputPushPull); #[cfg(gpio_v2)] pin.set_speed(crate::gpio::Speed::VeryHigh); }); PwmPin { _pin: pin.map_into(), phantom: PhantomData, } } } impl<'d, Perip: AdvancedCaptureCompare16bitInstance> ComplementaryPwmPin<'d, Perip, $channel> { pub fn $new_chx(pin: impl Peripheral

> + 'd) -> Self { into_ref!(pin); critical_section::with(|_| { 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, } } } impl sealed::AdvancedChannel for $channel {} impl AdvancedChannel for $channel { fn raw() -> usize { $ch_num } } }; } advanced_channel_impl!(new_cha, ChA, 0, ChannelAPin, ChannelAComplementaryPin); advanced_channel_impl!(new_chb, ChB, 1, ChannelBPin, ChannelBComplementaryPin); advanced_channel_impl!(new_chc, ChC, 2, ChannelCPin, ChannelCComplementaryPin); advanced_channel_impl!(new_chd, ChD, 3, ChannelDPin, ChannelDComplementaryPin); advanced_channel_impl!(new_che, ChE, 4, ChannelEPin, ChannelEComplementaryPin); /// Struct used to divide a high resolution timer into multiple channels pub struct AdvancedPwm<'d, T: AdvancedCaptureCompare16bitInstance> { _inner: PeripheralRef<'d, T>, pub master: Master, pub ch_a: ChA, pub ch_b: ChB, pub ch_c: ChC, pub ch_d: ChD, pub ch_e: ChE, } impl<'d, T: AdvancedCaptureCompare16bitInstance> AdvancedPwm<'d, T> { pub fn new( tim: impl Peripheral

+ 'd, _cha: Option>>, _chan: Option>>, _chb: Option>>, _chbn: Option>>, _chc: Option>>, _chcn: Option>>, _chd: Option>>, _chdn: Option>>, _che: Option>>, _chen: Option>>, ) -> Self { Self::new_inner(tim) } fn new_inner(tim: impl Peripheral

+ 'd) -> Self { into_ref!(tim); T::enable(); ::reset(); Self { _inner: tim, master: Master { phantom: PhantomData }, ch_a: ChA { phantom: PhantomData }, ch_b: ChB { phantom: PhantomData }, ch_c: ChC { phantom: PhantomData }, ch_d: ChD { phantom: PhantomData }, ch_e: ChE { phantom: PhantomData }, } } /// Set the dead time as a proportion of max_duty pub fn set_dead_time(&mut self, _value: u16) { todo!() // let (ckd, value) = compute_dead_time_value(value); // // self.inner.set_dead_time_clock_division(ckd); // self.inner.set_dead_time_value(value); } } // Represents a fixed-frequency bridge converter pub struct BridgeConverter> { phantom: PhantomData, pub ch: C, } impl> BridgeConverter { pub fn new(channel: C, frequency: Hertz) -> Self { Self { phantom: PhantomData, ch: channel, } } pub fn set_duty(&mut self, primary: u16, secondary: u16) { let _ = T::regs(); let _ = C::raw(); todo!() } } // Represents a variable-frequency resonant converter pub struct ResonantConverter> { phantom: PhantomData, pub ch: C, } impl> ResonantConverter { pub fn new(channel: C, min_frequency: Hertz) -> Self { Self { phantom: PhantomData, ch: channel, } } pub fn set_frequency(&mut self, frequency: Hertz) { todo!() } }