embassy/embassy-stm32/src/pwm/mod.rs

270 lines
9.7 KiB
Rust
Raw Normal View History

2023-04-05 02:35:25 +02:00
pub mod complementary_pwm;
pub mod simple_pwm;
2021-09-29 16:10:20 +02:00
use stm32_metapac::timer::vals::Ckd;
#[cfg(feature = "unstable-pac")]
pub mod low_level {
pub use super::sealed::*;
}
2021-09-29 16:10:20 +02:00
#[derive(Clone, Copy)]
pub enum Channel {
Ch1,
Ch2,
Ch3,
Ch4,
}
impl Channel {
pub fn raw(&self) -> usize {
match self {
Channel::Ch1 => 0,
Channel::Ch2 => 1,
Channel::Ch3 => 2,
Channel::Ch4 => 3,
2021-09-29 16:10:20 +02:00
}
}
}
2021-09-29 16:10:20 +02:00
#[derive(Clone, Copy)]
pub enum OutputCompareMode {
Frozen,
ActiveOnMatch,
InactiveOnMatch,
Toggle,
ForceInactive,
ForceActive,
PwmMode1,
PwmMode2,
}
2021-09-29 16:10:20 +02:00
impl From<OutputCompareMode> for stm32_metapac::timer::vals::Ocm {
fn from(mode: OutputCompareMode) -> Self {
match mode {
OutputCompareMode::Frozen => stm32_metapac::timer::vals::Ocm::FROZEN,
OutputCompareMode::ActiveOnMatch => stm32_metapac::timer::vals::Ocm::ACTIVEONMATCH,
OutputCompareMode::InactiveOnMatch => stm32_metapac::timer::vals::Ocm::INACTIVEONMATCH,
OutputCompareMode::Toggle => stm32_metapac::timer::vals::Ocm::TOGGLE,
OutputCompareMode::ForceInactive => stm32_metapac::timer::vals::Ocm::FORCEINACTIVE,
OutputCompareMode::ForceActive => stm32_metapac::timer::vals::Ocm::FORCEACTIVE,
OutputCompareMode::PwmMode1 => stm32_metapac::timer::vals::Ocm::PWMMODE1,
OutputCompareMode::PwmMode2 => stm32_metapac::timer::vals::Ocm::PWMMODE2,
2021-09-29 16:10:20 +02:00
}
}
}
2021-09-29 16:10:20 +02:00
pub(crate) mod sealed {
use super::*;
2021-09-29 16:10:20 +02:00
pub trait CaptureCompare16bitInstance: crate::timer::sealed::GeneralPurpose16bitInstance {
2022-06-23 01:27:39 +02:00
/// Global output enable. Does not do anything on non-advanced timers.
2023-06-19 03:07:26 +02:00
fn enable_outputs(&mut self, enable: bool);
2022-06-23 01:27:39 +02:00
2023-06-19 03:07:26 +02:00
fn set_output_compare_mode(&mut self, channel: Channel, mode: OutputCompareMode);
2021-09-29 16:10:20 +02:00
2023-06-19 03:07:26 +02:00
fn enable_channel(&mut self, channel: Channel, enable: bool);
2021-09-29 16:10:20 +02:00
2023-06-19 03:07:26 +02:00
fn set_compare_value(&mut self, channel: Channel, value: u16);
2021-09-29 16:10:20 +02:00
2023-06-19 03:07:26 +02:00
fn get_max_compare_value(&self) -> u16;
2021-09-29 16:10:20 +02:00
}
2023-04-05 02:35:25 +02:00
pub trait ComplementaryCaptureCompare16bitInstance: CaptureCompare16bitInstance {
2023-06-19 03:07:26 +02:00
fn set_dead_time_clock_division(&mut self, value: Ckd);
2023-06-19 03:07:26 +02:00
fn set_dead_time_value(&mut self, value: u8);
2023-06-19 03:07:26 +02:00
fn enable_complementary_channel(&mut self, channel: Channel, enable: bool);
2023-04-05 02:35:25 +02:00
}
2022-06-12 22:15:44 +02:00
pub trait CaptureCompare32bitInstance: crate::timer::sealed::GeneralPurpose32bitInstance {
2023-06-19 03:07:26 +02:00
fn set_output_compare_mode(&mut self, channel: Channel, mode: OutputCompareMode);
2023-06-19 03:07:26 +02:00
fn enable_channel(&mut self, channel: Channel, enable: bool);
2023-06-19 03:07:26 +02:00
fn set_compare_value(&mut self, channel: Channel, value: u32);
2023-06-19 03:07:26 +02:00
fn get_max_compare_value(&self) -> u32;
2021-09-29 16:10:20 +02:00
}
}
pub trait CaptureCompare16bitInstance:
sealed::CaptureCompare16bitInstance + crate::timer::GeneralPurpose16bitInstance + 'static
{
}
2023-04-05 02:35:25 +02:00
pub trait ComplementaryCaptureCompare16bitInstance:
sealed::ComplementaryCaptureCompare16bitInstance + crate::timer::AdvancedControlInstance + 'static
{
}
pub trait CaptureCompare32bitInstance:
2022-06-12 22:15:44 +02:00
sealed::CaptureCompare32bitInstance + CaptureCompare16bitInstance + crate::timer::GeneralPurpose32bitInstance + 'static
{
}
2021-09-29 16:10:20 +02:00
#[allow(unused)]
macro_rules! impl_compare_capable_16bit {
2021-09-29 16:10:20 +02:00
($inst:ident) => {
impl crate::pwm::sealed::CaptureCompare16bitInstance for crate::peripherals::$inst {
2023-06-19 03:07:26 +02:00
fn enable_outputs(&mut self, _enable: bool) {}
2022-06-23 01:27:39 +02:00
2023-06-19 03:07:26 +02:00
fn set_output_compare_mode(&mut self, channel: crate::pwm::Channel, mode: OutputCompareMode) {
use crate::timer::sealed::GeneralPurpose16bitInstance;
let r = Self::regs_gp16();
let raw_channel: usize = channel.raw();
r.ccmr_output(raw_channel / 2)
.modify(|w| w.set_ocm(raw_channel % 2, mode.into()));
2021-09-29 16:10:20 +02:00
}
2023-06-19 03:07:26 +02:00
fn enable_channel(&mut self, channel: Channel, enable: bool) {
use crate::timer::sealed::GeneralPurpose16bitInstance;
Self::regs_gp16()
.ccer()
.modify(|w| w.set_cce(channel.raw(), enable));
}
2023-06-19 03:07:26 +02:00
fn set_compare_value(&mut self, channel: Channel, value: u16) {
use crate::timer::sealed::GeneralPurpose16bitInstance;
2022-06-12 22:15:44 +02:00
Self::regs_gp16().ccr(channel.raw()).modify(|w| w.set_ccr(value));
}
2023-06-19 03:07:26 +02:00
fn get_max_compare_value(&self) -> u16 {
use crate::timer::sealed::GeneralPurpose16bitInstance;
Self::regs_gp16().arr().read().arr()
}
}
2021-09-29 16:10:20 +02:00
};
}
foreach_interrupt! {
($inst:ident, timer, TIM_GP16, UP, $irq:ident) => {
2022-06-23 01:27:39 +02:00
impl_compare_capable_16bit!($inst);
2021-09-29 16:10:20 +02:00
impl CaptureCompare16bitInstance for crate::peripherals::$inst {
2021-09-29 16:10:20 +02:00
}
};
($inst:ident, timer, TIM_GP32, UP, $irq:ident) => {
impl_compare_capable_16bit!($inst);
impl crate::pwm::sealed::CaptureCompare32bitInstance for crate::peripherals::$inst {
2023-06-19 03:07:26 +02:00
fn set_output_compare_mode(
&mut self,
channel: crate::pwm::Channel,
mode: OutputCompareMode,
) {
use crate::timer::sealed::GeneralPurpose32bitInstance;
let raw_channel = channel.raw();
Self::regs_gp32().ccmr_output(raw_channel / 2).modify(|w| w.set_ocm(raw_channel % 2, mode.into()));
2021-09-29 16:10:20 +02:00
}
2023-06-19 03:07:26 +02:00
fn enable_channel(&mut self, channel: Channel, enable: bool) {
use crate::timer::sealed::GeneralPurpose32bitInstance;
Self::regs_gp32().ccer().modify(|w| w.set_cce(channel.raw(), enable));
}
2023-06-19 03:07:26 +02:00
fn set_compare_value(&mut self, channel: Channel, value: u32) {
use crate::timer::sealed::GeneralPurpose32bitInstance;
Self::regs_gp32().ccr(channel.raw()).modify(|w| w.set_ccr(value));
}
2023-06-19 03:07:26 +02:00
fn get_max_compare_value(&self) -> u32 {
use crate::timer::sealed::GeneralPurpose32bitInstance;
Self::regs_gp32().arr().read().arr() as u32
}
}
impl CaptureCompare16bitInstance for crate::peripherals::$inst {
}
impl CaptureCompare32bitInstance for crate::peripherals::$inst {
}
};
($inst:ident, timer, TIM_ADV, UP, $irq:ident) => {
impl crate::pwm::sealed::CaptureCompare16bitInstance for crate::peripherals::$inst {
2023-06-19 03:07:26 +02:00
fn enable_outputs(&mut self, enable: bool) {
2022-06-23 01:27:39 +02:00
use crate::timer::sealed::AdvancedControlInstance;
let r = Self::regs_advanced();
r.bdtr().modify(|w| w.set_moe(enable));
}
2023-06-19 03:07:26 +02:00
fn set_output_compare_mode(
&mut self,
channel: crate::pwm::Channel,
mode: OutputCompareMode,
) {
use crate::timer::sealed::AdvancedControlInstance;
let r = Self::regs_advanced();
let raw_channel: usize = channel.raw();
r.ccmr_output(raw_channel / 2)
.modify(|w| w.set_ocm(raw_channel % 2, mode.into()));
}
2023-06-19 03:07:26 +02:00
fn enable_channel(&mut self, channel: Channel, enable: bool) {
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced()
.ccer()
.modify(|w| w.set_cce(channel.raw(), enable));
}
2023-06-19 03:07:26 +02:00
fn set_compare_value(&mut self, channel: Channel, value: u16) {
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced()
.ccr(channel.raw())
.modify(|w| w.set_ccr(value));
}
2023-06-19 03:07:26 +02:00
fn get_max_compare_value(&self) -> u16 {
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced().arr().read().arr()
}
}
impl CaptureCompare16bitInstance for crate::peripherals::$inst {
2021-09-29 16:10:20 +02:00
}
2023-04-05 02:35:25 +02:00
impl crate::pwm::sealed::ComplementaryCaptureCompare16bitInstance for crate::peripherals::$inst {
2023-06-19 03:07:26 +02:00
fn set_dead_time_clock_division(&mut self, value: Ckd) {
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced().cr1().modify(|w| w.set_ckd(value));
}
2023-06-19 03:07:26 +02:00
fn set_dead_time_value(&mut self, value: u8) {
2023-04-05 02:35:25 +02:00
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced().bdtr().modify(|w| w.set_dtg(value));
}
2023-06-19 03:07:26 +02:00
fn enable_complementary_channel(&mut self, channel: Channel, enable: bool) {
use crate::timer::sealed::AdvancedControlInstance;
Self::regs_advanced()
.ccer()
.modify(|w| w.set_ccne(channel.raw(), enable));
}
2023-04-05 02:35:25 +02:00
}
impl ComplementaryCaptureCompare16bitInstance for crate::peripherals::$inst {
}
2021-09-29 16:10:20 +02:00
};
}
pin_trait!(Channel1Pin, CaptureCompare16bitInstance);
pin_trait!(Channel1ComplementaryPin, CaptureCompare16bitInstance);
pin_trait!(Channel2Pin, CaptureCompare16bitInstance);
pin_trait!(Channel2ComplementaryPin, CaptureCompare16bitInstance);
pin_trait!(Channel3Pin, CaptureCompare16bitInstance);
pin_trait!(Channel3ComplementaryPin, CaptureCompare16bitInstance);
pin_trait!(Channel4Pin, CaptureCompare16bitInstance);
pin_trait!(Channel4ComplementaryPin, CaptureCompare16bitInstance);
pin_trait!(ExternalTriggerPin, CaptureCompare16bitInstance);
pin_trait!(BreakInputPin, CaptureCompare16bitInstance);
pin_trait!(BreakInputComparator1Pin, CaptureCompare16bitInstance);
pin_trait!(BreakInputComparator2Pin, CaptureCompare16bitInstance);
pin_trait!(BreakInput2Pin, CaptureCompare16bitInstance);
pin_trait!(BreakInput2Comparator1Pin, CaptureCompare16bitInstance);
pin_trait!(BreakInput2Comparator2Pin, CaptureCompare16bitInstance);