2022-07-10 23:07:18 +02:00
|
|
|
use core::marker::PhantomData;
|
|
|
|
|
2022-07-23 14:00:19 +02:00
|
|
|
use embassy_hal_common::{into_ref, PeripheralRef};
|
2021-12-08 17:37:46 +01:00
|
|
|
|
2022-02-10 21:38:03 +01:00
|
|
|
use super::*;
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use crate::gpio::sealed::{AFType, Pin};
|
2022-07-10 23:07:18 +02:00
|
|
|
use crate::gpio::AnyPin;
|
2022-02-10 21:38:03 +01:00
|
|
|
use crate::time::Hertz;
|
2022-07-23 14:00:19 +02:00
|
|
|
use crate::Peripheral;
|
2022-02-10 21:38:03 +01:00
|
|
|
|
2022-07-10 23:07:18 +02:00
|
|
|
pub struct Ch1;
|
|
|
|
pub struct Ch2;
|
|
|
|
pub struct Ch3;
|
|
|
|
pub struct Ch4;
|
|
|
|
|
|
|
|
pub struct PwmPin<'d, Perip, Channel> {
|
|
|
|
_pin: PeripheralRef<'d, AnyPin>,
|
|
|
|
phantom: PhantomData<(Perip, Channel)>,
|
2021-12-08 17:37:46 +01:00
|
|
|
}
|
|
|
|
|
2022-07-10 23:07:18 +02:00
|
|
|
macro_rules! channel_impl {
|
2022-07-23 16:14:00 +02:00
|
|
|
($new_chx:ident, $channel:ident, $pin_trait:ident) => {
|
2022-07-10 23:07:18 +02:00
|
|
|
impl<'d, Perip: CaptureCompare16bitInstance> PwmPin<'d, Perip, $channel> {
|
2022-07-23 16:14:00 +02:00
|
|
|
pub fn $new_chx(pin: impl Peripheral<P = impl $pin_trait<Perip>> + 'd) -> Self {
|
2022-07-10 23:07:18 +02:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
PwmPin {
|
|
|
|
_pin: pin.map_into(),
|
|
|
|
phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-10 21:38:03 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:14:00 +02:00
|
|
|
channel_impl!(new_ch1, Ch1, Channel1Pin);
|
|
|
|
channel_impl!(new_ch2, Ch2, Channel2Pin);
|
|
|
|
channel_impl!(new_ch3, Ch3, Channel3Pin);
|
|
|
|
channel_impl!(new_ch4, Ch4, Channel4Pin);
|
2022-02-10 02:34:59 +01:00
|
|
|
|
2022-07-10 23:07:18 +02:00
|
|
|
pub struct SimplePwm<'d, T> {
|
|
|
|
inner: PeripheralRef<'d, T>,
|
|
|
|
}
|
2021-12-08 17:37:46 +01:00
|
|
|
|
2022-07-10 23:07:18 +02:00
|
|
|
impl<'d, T: CaptureCompare16bitInstance> SimplePwm<'d, T> {
|
|
|
|
pub fn new(
|
2022-07-23 14:00:19 +02:00
|
|
|
tim: impl Peripheral<P = T> + 'd,
|
2022-07-23 16:14:00 +02:00
|
|
|
_ch1: Option<PwmPin<'d, T, Ch1>>,
|
|
|
|
_ch2: Option<PwmPin<'d, T, Ch2>>,
|
|
|
|
_ch3: Option<PwmPin<'d, T, Ch3>>,
|
|
|
|
_ch4: Option<PwmPin<'d, T, Ch4>>,
|
2022-07-11 00:36:10 +02:00
|
|
|
freq: Hertz,
|
2022-02-10 02:34:59 +01:00
|
|
|
) -> Self {
|
2022-07-10 23:07:18 +02:00
|
|
|
Self::new_inner(tim, freq)
|
2022-02-10 02:34:59 +01:00
|
|
|
}
|
|
|
|
|
2022-07-10 23:07:18 +02:00
|
|
|
fn new_inner(tim: impl Peripheral<P = T> + 'd, freq: Hertz) -> Self {
|
2022-07-23 14:00:19 +02:00
|
|
|
into_ref!(tim);
|
2022-02-10 02:34:59 +01:00
|
|
|
|
|
|
|
T::enable();
|
|
|
|
<T as crate::rcc::sealed::RccPeripheral>::reset();
|
|
|
|
|
2022-07-23 01:29:35 +02:00
|
|
|
let mut this = Self { inner: tim };
|
2021-12-08 17:37:46 +01:00
|
|
|
|
|
|
|
this.inner.set_frequency(freq);
|
|
|
|
this.inner.start();
|
|
|
|
|
|
|
|
unsafe {
|
2022-06-23 01:27:39 +02:00
|
|
|
this.inner.enable_outputs(true);
|
|
|
|
|
2021-12-08 17:37:46 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 00:36:10 +02:00
|
|
|
pub fn set_freq(&mut self, freq: Hertz) {
|
2021-12-08 17:37:46 +01:00
|
|
|
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) }
|
|
|
|
}
|
|
|
|
}
|