2021-12-08 16:39:59 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
2022-04-02 02:35:06 +00:00
|
|
|
use defmt_rtt as _; // global logger
|
|
|
|
use panic_probe as _;
|
2021-12-08 16:39:59 +00:00
|
|
|
|
2022-04-02 02:35:06 +00:00
|
|
|
use defmt::*;
|
2021-12-08 16:39:59 +00:00
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy::time::{Duration, Timer};
|
2022-02-10 20:38:03 +00:00
|
|
|
use embassy_stm32::gpio::low_level::AFType;
|
|
|
|
use embassy_stm32::gpio::Speed;
|
|
|
|
use embassy_stm32::pwm::*;
|
2021-12-08 16:39:59 +00:00
|
|
|
use embassy_stm32::time::{Hertz, U32Ext};
|
2022-03-27 17:29:29 +00:00
|
|
|
use embassy_stm32::unborrow;
|
2022-06-11 03:08:57 +00:00
|
|
|
use embassy_stm32::Unborrow;
|
2021-12-08 16:39:59 +00:00
|
|
|
use embassy_stm32::{Config, Peripherals};
|
|
|
|
|
|
|
|
pub fn config() -> Config {
|
|
|
|
let mut config = Config::default();
|
|
|
|
config.rcc.sys_ck = Some(400.mhz().into());
|
|
|
|
config.rcc.hclk = Some(400.mhz().into());
|
|
|
|
config.rcc.pll1.q_ck = Some(100.mhz().into());
|
|
|
|
config.rcc.pclk1 = Some(100.mhz().into());
|
|
|
|
config.rcc.pclk2 = Some(100.mhz().into());
|
|
|
|
config.rcc.pclk3 = Some(100.mhz().into());
|
|
|
|
config.rcc.pclk4 = Some(100.mhz().into());
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
#[embassy::main(config = "config()")]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
2022-02-10 01:34:59 +00:00
|
|
|
let mut pwm = SimplePwm32::new(p.TIM5, p.PA0, p.PA1, p.PA2, p.PA3, 10000.hz());
|
2021-12-08 16:39:59 +00:00
|
|
|
let max = pwm.get_max_duty();
|
|
|
|
pwm.enable(Channel::Ch1);
|
|
|
|
|
|
|
|
info!("PWM initialized");
|
|
|
|
info!("PWM max duty {}", max);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
pwm.set_duty(Channel::Ch1, 0);
|
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
pwm.set_duty(Channel::Ch1, max / 4);
|
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
pwm.set_duty(Channel::Ch1, max / 2);
|
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
pwm.set_duty(Channel::Ch1, max - 1);
|
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
}
|
|
|
|
}
|
2022-02-10 20:38:03 +00:00
|
|
|
pub struct SimplePwm32<'d, T: CaptureCompare32bitInstance> {
|
2021-12-08 16:39:59 +00:00
|
|
|
phantom: PhantomData<&'d mut T>,
|
|
|
|
inner: T,
|
|
|
|
}
|
|
|
|
|
2022-02-10 20:38:03 +00:00
|
|
|
impl<'d, T: CaptureCompare32bitInstance> SimplePwm32<'d, T> {
|
2021-12-08 16:39:59 +00:00
|
|
|
pub fn new<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!(tim, ch1, ch2, ch3, ch4);
|
|
|
|
|
|
|
|
T::enable();
|
|
|
|
<T as embassy_stm32::rcc::low_level::RccPeripheral>::reset();
|
|
|
|
|
|
|
|
unsafe {
|
2022-02-10 20:38:03 +00:00
|
|
|
ch1.set_speed(Speed::VeryHigh);
|
|
|
|
ch1.set_as_af(ch1.af_num(), AFType::OutputPushPull);
|
|
|
|
ch2.set_speed(Speed::VeryHigh);
|
|
|
|
ch2.set_as_af(ch1.af_num(), AFType::OutputPushPull);
|
|
|
|
ch3.set_speed(Speed::VeryHigh);
|
|
|
|
ch3.set_as_af(ch1.af_num(), AFType::OutputPushPull);
|
|
|
|
ch4.set_speed(Speed::VeryHigh);
|
|
|
|
ch4.set_as_af(ch1.af_num(), AFType::OutputPushPull);
|
2021-12-08 16:39:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut this = Self {
|
|
|
|
inner: tim,
|
|
|
|
phantom: PhantomData,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.set_freq(freq);
|
|
|
|
this.inner.start();
|
|
|
|
|
|
|
|
unsafe {
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccmr_output(0)
|
|
|
|
.modify(|w| w.set_ocm(0, OutputCompareMode::PwmMode1.into()));
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccmr_output(0)
|
|
|
|
.modify(|w| w.set_ocm(1, OutputCompareMode::PwmMode1.into()));
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccmr_output(1)
|
|
|
|
.modify(|w| w.set_ocm(0, OutputCompareMode::PwmMode1.into()));
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccmr_output(1)
|
|
|
|
.modify(|w| w.set_ocm(1, OutputCompareMode::PwmMode1.into()));
|
|
|
|
}
|
|
|
|
this
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn enable(&mut self, channel: Channel) {
|
|
|
|
unsafe {
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_cce(channel.raw(), true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disable(&mut self, channel: Channel) {
|
|
|
|
unsafe {
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_cce(channel.raw(), false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_freq<F: Into<Hertz>>(&mut self, freq: F) {
|
|
|
|
<T as embassy_stm32::timer::low_level::GeneralPurpose32bitInstance>::set_frequency(
|
|
|
|
&mut self.inner,
|
|
|
|
freq,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_max_duty(&self) -> u32 {
|
2022-02-28 15:20:42 +00:00
|
|
|
unsafe { T::regs_gp32().arr().read().arr() }
|
2021-12-08 16:39:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_duty(&mut self, channel: Channel, duty: u32) {
|
|
|
|
defmt::assert!(duty < self.get_max_duty());
|
|
|
|
unsafe {
|
2022-02-28 15:20:42 +00:00
|
|
|
T::regs_gp32()
|
2021-12-08 16:39:59 +00:00
|
|
|
.ccr(channel.raw())
|
|
|
|
.modify(|w| w.set_ccr(duty))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|