2023-06-25 22:33:57 +02:00
|
|
|
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
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct Master<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ChA<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ChB<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ChC<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ChD<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ChE<T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
phantom: PhantomData<T>,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mod sealed {
|
2023-06-28 01:24:32 +02:00
|
|
|
use crate::pwm::AdvancedCaptureCompare16bitInstance;
|
|
|
|
|
|
|
|
pub trait AdvancedChannel<T: AdvancedCaptureCompare16bitInstance> {}
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
pub trait AdvancedChannel<T: AdvancedCaptureCompare16bitInstance>: sealed::AdvancedChannel<T> {
|
|
|
|
fn raw() -> usize;
|
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
|
|
|
|
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 {
|
2023-06-28 01:24:32 +02:00
|
|
|
($new_chx:ident, $channel:tt, $ch_num:expr, $pin_trait:ident, $complementary_pin_trait:ident) => {
|
|
|
|
impl<'d, Perip: AdvancedCaptureCompare16bitInstance> PwmPin<'d, Perip, $channel<Perip>> {
|
2023-06-25 22:33:57 +02:00
|
|
|
pub fn $new_chx(pin: impl Peripheral<P = impl $complementary_pin_trait<Perip>> + '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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
impl<'d, Perip: AdvancedCaptureCompare16bitInstance> ComplementaryPwmPin<'d, Perip, $channel<Perip>> {
|
2023-06-25 22:33:57 +02:00
|
|
|
pub fn $new_chx(pin: impl Peripheral<P = impl $complementary_pin_trait<Perip>> + '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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-27 03:23:26 +02:00
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
impl<T: AdvancedCaptureCompare16bitInstance> sealed::AdvancedChannel<T> for $channel<T> {}
|
|
|
|
impl<T: AdvancedCaptureCompare16bitInstance> AdvancedChannel<T> for $channel<T> {
|
|
|
|
fn raw() -> usize {
|
|
|
|
$ch_num
|
|
|
|
}
|
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
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);
|
2023-06-25 22:33:57 +02:00
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
/// Struct used to divide a high resolution timer into multiple channels
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct AdvancedPwm<'d, T: AdvancedCaptureCompare16bitInstance> {
|
|
|
|
_inner: PeripheralRef<'d, T>,
|
|
|
|
pub master: Master<T>,
|
|
|
|
pub ch_a: ChA<T>,
|
|
|
|
pub ch_b: ChB<T>,
|
|
|
|
pub ch_c: ChC<T>,
|
|
|
|
pub ch_d: ChD<T>,
|
|
|
|
pub ch_e: ChE<T>,
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
impl<'d, T: AdvancedCaptureCompare16bitInstance> AdvancedPwm<'d, T> {
|
2023-06-25 22:33:57 +02:00
|
|
|
pub fn new(
|
|
|
|
tim: impl Peripheral<P = T> + 'd,
|
2023-06-28 01:24:32 +02:00
|
|
|
_cha: Option<PwmPin<'d, T, ChA<T>>>,
|
|
|
|
_chan: Option<ComplementaryPwmPin<'d, T, ChA<T>>>,
|
|
|
|
_chb: Option<PwmPin<'d, T, ChB<T>>>,
|
|
|
|
_chbn: Option<ComplementaryPwmPin<'d, T, ChB<T>>>,
|
|
|
|
_chc: Option<PwmPin<'d, T, ChC<T>>>,
|
|
|
|
_chcn: Option<ComplementaryPwmPin<'d, T, ChC<T>>>,
|
|
|
|
_chd: Option<PwmPin<'d, T, ChD<T>>>,
|
|
|
|
_chdn: Option<ComplementaryPwmPin<'d, T, ChD<T>>>,
|
|
|
|
_che: Option<PwmPin<'d, T, ChE<T>>>,
|
|
|
|
_chen: Option<ComplementaryPwmPin<'d, T, ChE<T>>>,
|
2023-06-25 22:33:57 +02:00
|
|
|
) -> Self {
|
2023-06-27 03:23:26 +02:00
|
|
|
Self::new_inner(tim)
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
fn new_inner(tim: impl Peripheral<P = T> + 'd) -> Self {
|
2023-06-25 22:33:57 +02:00
|
|
|
into_ref!(tim);
|
|
|
|
|
|
|
|
T::enable();
|
|
|
|
<T as crate::rcc::sealed::RccPeripheral>::reset();
|
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
Self {
|
2023-06-28 01:24:32 +02:00
|
|
|
_inner: tim,
|
2023-06-27 03:23:26 +02:00
|
|
|
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 },
|
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
/// Set the dead time as a proportion of max_duty
|
2023-06-28 01:24:32 +02:00
|
|
|
pub fn set_dead_time(&mut self, _value: u16) {
|
|
|
|
todo!()
|
2023-06-27 03:23:26 +02:00
|
|
|
// let (ckd, value) = compute_dead_time_value(value);
|
|
|
|
//
|
|
|
|
// self.inner.set_dead_time_clock_division(ckd);
|
|
|
|
// self.inner.set_dead_time_value(value);
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Represents a fixed-frequency bridge converter
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct BridgeConverter<T: AdvancedCaptureCompare16bitInstance, C: AdvancedChannel<T>> {
|
|
|
|
phantom: PhantomData<T>,
|
|
|
|
pub ch: C,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
impl<T: AdvancedCaptureCompare16bitInstance, C: AdvancedChannel<T>> BridgeConverter<T, C> {
|
|
|
|
pub fn new(channel: C, frequency: Hertz) -> Self {
|
|
|
|
Self {
|
|
|
|
phantom: PhantomData,
|
|
|
|
ch: channel,
|
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
pub fn set_duty(&mut self, primary: u16, secondary: u16) {
|
2023-06-28 01:24:32 +02:00
|
|
|
let _ = T::regs();
|
|
|
|
let _ = C::raw();
|
|
|
|
|
2023-06-25 22:33:57 +02:00
|
|
|
todo!()
|
|
|
|
}
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Represents a variable-frequency resonant converter
|
2023-06-28 01:24:32 +02:00
|
|
|
pub struct ResonantConverter<T: AdvancedCaptureCompare16bitInstance, C: AdvancedChannel<T>> {
|
|
|
|
phantom: PhantomData<T>,
|
|
|
|
pub ch: C,
|
2023-06-27 03:23:26 +02:00
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
|
2023-06-28 01:24:32 +02:00
|
|
|
impl<T: AdvancedCaptureCompare16bitInstance, C: AdvancedChannel<T>> ResonantConverter<T, C> {
|
|
|
|
pub fn new(channel: C, min_frequency: Hertz) -> Self {
|
|
|
|
Self {
|
|
|
|
phantom: PhantomData,
|
|
|
|
ch: channel,
|
|
|
|
}
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
|
2023-06-27 03:23:26 +02:00
|
|
|
pub fn set_frequency(&mut self, frequency: Hertz) {
|
|
|
|
todo!()
|
2023-06-25 22:33:57 +02:00
|
|
|
}
|
|
|
|
}
|