2021-12-08 17:37:46 +01:00
|
|
|
use crate::{
|
|
|
|
pwm::{pins::*, CaptureCompareCapable16bitInstance, Channel, OutputCompareMode},
|
|
|
|
time::Hertz,
|
|
|
|
};
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use embassy::util::Unborrow;
|
|
|
|
use embassy_hal_common::unborrow;
|
|
|
|
|
|
|
|
pub struct SimplePwm<'d, T> {
|
|
|
|
phantom: PhantomData<&'d mut T>,
|
|
|
|
inner: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, T: CaptureCompareCapable16bitInstance> SimplePwm<'d, T> {
|
2022-02-10 02:34:59 +01:00
|
|
|
pub fn new_1ch<F: Into<Hertz>>(
|
|
|
|
tim: impl Unborrow<Target = T> + 'd,
|
|
|
|
ch1: impl Unborrow<Target = impl Channel1Pin<T>> + 'd,
|
|
|
|
freq: F,
|
|
|
|
) -> Self {
|
|
|
|
unborrow!(ch1);
|
|
|
|
Self::new_inner(tim, freq, move || unsafe {
|
|
|
|
ch1.configure();
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_2ch<F: Into<Hertz>>(
|
2021-12-08 17:37:46 +01:00
|
|
|
tim: impl Unborrow<Target = T> + 'd,
|
|
|
|
ch1: impl Unborrow<Target = impl Channel1Pin<T>> + 'd,
|
|
|
|
ch2: impl Unborrow<Target = impl Channel2Pin<T>> + 'd,
|
|
|
|
freq: F,
|
|
|
|
) -> Self {
|
2022-02-10 02:34:59 +01:00
|
|
|
unborrow!(ch1, ch2);
|
|
|
|
Self::new_inner(tim, freq, move || unsafe {
|
|
|
|
ch1.configure();
|
|
|
|
ch2.configure();
|
|
|
|
})
|
|
|
|
}
|
2021-12-08 17:37:46 +01:00
|
|
|
|
2022-02-10 02:34:59 +01:00
|
|
|
pub fn new_3ch<F: Into<Hertz>>(
|
|
|
|
tim: impl Unborrow<Target = T> + 'd,
|
|
|
|
ch1: impl Unborrow<Target = impl Channel1Pin<T>> + 'd,
|
|
|
|
ch2: impl Unborrow<Target = impl Channel2Pin<T>> + 'd,
|
|
|
|
ch3: impl Unborrow<Target = impl Channel3Pin<T>> + 'd,
|
|
|
|
freq: F,
|
|
|
|
) -> Self {
|
|
|
|
unborrow!(ch1, ch2, ch3);
|
|
|
|
Self::new_inner(tim, freq, move || unsafe {
|
|
|
|
ch1.configure();
|
|
|
|
ch2.configure();
|
|
|
|
ch3.configure();
|
|
|
|
})
|
|
|
|
}
|
2021-12-08 17:37:46 +01:00
|
|
|
|
2022-02-10 02:34:59 +01:00
|
|
|
pub fn new_4ch<F: Into<Hertz>>(
|
|
|
|
tim: impl Unborrow<Target = T> + 'd,
|
|
|
|
ch1: impl Unborrow<Target = impl Channel1Pin<T>> + 'd,
|
|
|
|
ch2: impl Unborrow<Target = impl Channel2Pin<T>> + 'd,
|
|
|
|
ch3: impl Unborrow<Target = impl Channel3Pin<T>> + 'd,
|
|
|
|
ch4: impl Unborrow<Target = impl Channel4Pin<T>> + 'd,
|
|
|
|
freq: F,
|
|
|
|
) -> Self {
|
|
|
|
unborrow!(ch1, ch2, ch3, ch4);
|
|
|
|
Self::new_inner(tim, freq, move || unsafe {
|
2021-12-08 17:37:46 +01:00
|
|
|
ch1.configure();
|
|
|
|
ch2.configure();
|
|
|
|
ch3.configure();
|
|
|
|
ch4.configure();
|
2022-02-10 02:34:59 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_inner<F: Into<Hertz>>(
|
|
|
|
tim: impl Unborrow<Target = T> + 'd,
|
|
|
|
freq: F,
|
|
|
|
configure_pins: impl FnOnce(),
|
|
|
|
) -> Self {
|
|
|
|
unborrow!(tim);
|
|
|
|
|
|
|
|
T::enable();
|
|
|
|
<T as crate::rcc::sealed::RccPeripheral>::reset();
|
|
|
|
|
|
|
|
configure_pins();
|
2021-12-08 17:37:46 +01:00
|
|
|
|
|
|
|
let mut this = Self {
|
|
|
|
inner: tim,
|
|
|
|
phantom: PhantomData,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.inner.set_frequency(freq);
|
|
|
|
this.inner.start();
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
this.inner
|
|
|
|
.set_output_compare_mode(Channel::Ch1, OutputCompareMode::PwmMode1);
|
|
|
|
this.inner
|
|
|
|
.set_output_compare_mode(Channel::Ch2, OutputCompareMode::PwmMode1);
|
|
|
|
this.inner
|
|
|
|
.set_output_compare_mode(Channel::Ch3, OutputCompareMode::PwmMode1);
|
|
|
|
this.inner
|
|
|
|
.set_output_compare_mode(Channel::Ch4, OutputCompareMode::PwmMode1);
|
|
|
|
}
|
|
|
|
this
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn enable(&mut self, channel: Channel) {
|
|
|
|
unsafe {
|
|
|
|
self.inner.enable_channel(channel, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disable(&mut self, channel: Channel) {
|
|
|
|
unsafe {
|
|
|
|
self.inner.enable_channel(channel, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_freq<F: Into<Hertz>>(&mut self, freq: F) {
|
|
|
|
self.inner.set_frequency(freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_max_duty(&self) -> u16 {
|
|
|
|
unsafe { self.inner.get_max_compare_value() }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_duty(&mut self, channel: Channel, duty: u16) {
|
|
|
|
assert!(duty < self.get_max_duty());
|
|
|
|
unsafe { self.inner.set_compare_value(channel, duty) }
|
|
|
|
}
|
|
|
|
}
|