2023-07-28 15:29:27 +02:00
|
|
|
pub mod complementary_pwm;
|
|
|
|
pub mod simple_pwm;
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use stm32_metapac::timer::vals;
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2023-06-08 16:08:40 +02:00
|
|
|
use crate::interrupt;
|
2022-06-12 22:15:44 +02:00
|
|
|
use crate::rcc::sealed::RccPeripheral as __RccPeri;
|
|
|
|
use crate::rcc::RccPeripheral;
|
2021-12-08 17:36:40 +01:00
|
|
|
use crate::time::Hertz;
|
|
|
|
|
|
|
|
#[cfg(feature = "unstable-pac")]
|
|
|
|
pub mod low_level {
|
|
|
|
pub use super::sealed::*;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) mod sealed {
|
|
|
|
use super::*;
|
|
|
|
pub trait Basic16bitInstance: RccPeripheral {
|
2023-06-08 16:08:40 +02:00
|
|
|
type Interrupt: interrupt::typelevel::Interrupt;
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs() -> crate::pac::timer::TimBasic;
|
2021-12-08 17:36:40 +01:00
|
|
|
|
|
|
|
fn start(&mut self);
|
|
|
|
|
|
|
|
fn stop(&mut self);
|
|
|
|
|
|
|
|
fn reset(&mut self);
|
|
|
|
|
2022-07-11 00:36:10 +02:00
|
|
|
fn set_frequency(&mut self, frequency: Hertz);
|
2021-12-08 17:36:40 +01:00
|
|
|
|
|
|
|
fn clear_update_interrupt(&mut self) -> bool;
|
|
|
|
|
|
|
|
fn enable_update_interrupt(&mut self, enable: bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait GeneralPurpose16bitInstance: Basic16bitInstance {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_gp16() -> crate::pac::timer::TimGp16;
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait GeneralPurpose32bitInstance: GeneralPurpose16bitInstance {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_gp32() -> crate::pac::timer::TimGp32;
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-07-11 00:36:10 +02:00
|
|
|
fn set_frequency(&mut self, frequency: Hertz);
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
2022-07-12 14:06:16 +02:00
|
|
|
pub trait AdvancedControlInstance: GeneralPurpose16bitInstance {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_advanced() -> crate::pac::timer::TimAdv;
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
2023-07-28 15:29:27 +02:00
|
|
|
|
|
|
|
pub trait CaptureCompare16bitInstance: GeneralPurpose16bitInstance {
|
|
|
|
/// Global output enable. Does not do anything on non-advanced timers.
|
|
|
|
fn enable_outputs(&mut self, enable: bool);
|
|
|
|
|
|
|
|
fn set_output_compare_mode(&mut self, channel: Channel, mode: OutputCompareMode);
|
|
|
|
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity);
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
fn enable_channel(&mut self, channel: Channel, enable: bool);
|
|
|
|
|
|
|
|
fn set_compare_value(&mut self, channel: Channel, value: u16);
|
|
|
|
|
|
|
|
fn get_max_compare_value(&self) -> u16;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait ComplementaryCaptureCompare16bitInstance: CaptureCompare16bitInstance {
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_complementary_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity);
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
fn set_dead_time_clock_division(&mut self, value: vals::Ckd);
|
|
|
|
|
|
|
|
fn set_dead_time_value(&mut self, value: u8);
|
|
|
|
|
|
|
|
fn enable_complementary_channel(&mut self, channel: Channel, enable: bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait CaptureCompare32bitInstance: GeneralPurpose32bitInstance {
|
|
|
|
fn set_output_compare_mode(&mut self, channel: Channel, mode: OutputCompareMode);
|
|
|
|
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity);
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
fn enable_channel(&mut self, channel: Channel, enable: bool);
|
|
|
|
|
|
|
|
fn set_compare_value(&mut self, channel: Channel, value: u32);
|
|
|
|
|
|
|
|
fn get_max_compare_value(&self) -> u32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub enum Channel {
|
|
|
|
Ch1,
|
|
|
|
Ch2,
|
|
|
|
Ch3,
|
|
|
|
Ch4,
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
impl Channel {
|
|
|
|
pub fn raw(&self) -> usize {
|
|
|
|
match self {
|
|
|
|
Channel::Ch1 => 0,
|
|
|
|
Channel::Ch2 => 1,
|
|
|
|
Channel::Ch3 => 2,
|
|
|
|
Channel::Ch4 => 3,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub enum OutputCompareMode {
|
|
|
|
Frozen,
|
|
|
|
ActiveOnMatch,
|
|
|
|
InactiveOnMatch,
|
|
|
|
Toggle,
|
|
|
|
ForceInactive,
|
|
|
|
ForceActive,
|
|
|
|
PwmMode1,
|
|
|
|
PwmMode2,
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-18 16:37:44 +02:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub enum OutputPolarity {
|
|
|
|
ActiveHigh,
|
|
|
|
ActiveLow,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<OutputPolarity> for bool {
|
|
|
|
fn from(mode: OutputPolarity) -> Self {
|
|
|
|
match mode {
|
|
|
|
OutputPolarity::ActiveHigh => false,
|
|
|
|
OutputPolarity::ActiveLow => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
pub trait Basic16bitInstance: sealed::Basic16bitInstance + 'static {}
|
|
|
|
|
2021-12-08 17:36:40 +01:00
|
|
|
pub trait GeneralPurpose16bitInstance: sealed::GeneralPurpose16bitInstance + 'static {}
|
|
|
|
|
|
|
|
pub trait GeneralPurpose32bitInstance: sealed::GeneralPurpose32bitInstance + 'static {}
|
|
|
|
|
|
|
|
pub trait AdvancedControlInstance: sealed::AdvancedControlInstance + 'static {}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
pub trait CaptureCompare16bitInstance:
|
|
|
|
sealed::CaptureCompare16bitInstance + GeneralPurpose16bitInstance + 'static
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait ComplementaryCaptureCompare16bitInstance:
|
|
|
|
sealed::ComplementaryCaptureCompare16bitInstance + AdvancedControlInstance + 'static
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait CaptureCompare32bitInstance:
|
|
|
|
sealed::CaptureCompare32bitInstance + CaptureCompare16bitInstance + GeneralPurpose32bitInstance + 'static
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2021-12-08 17:36:40 +01:00
|
|
|
|
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! impl_basic_16bit_timer {
|
|
|
|
($inst:ident, $irq:ident) => {
|
|
|
|
impl sealed::Basic16bitInstance for crate::peripherals::$inst {
|
2023-06-08 16:08:40 +02:00
|
|
|
type Interrupt = crate::interrupt::typelevel::$irq;
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs() -> crate::pac::timer::TimBasic {
|
2023-06-19 03:07:26 +02:00
|
|
|
unsafe { crate::pac::timer::TimBasic::from_ptr(crate::pac::$inst.as_ptr()) }
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn start(&mut self) {
|
2023-06-19 03:07:26 +02:00
|
|
|
Self::regs().cr1().modify(|r| r.set_cen(true));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn stop(&mut self) {
|
2023-06-19 03:07:26 +02:00
|
|
|
Self::regs().cr1().modify(|r| r.set_cen(false));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn reset(&mut self) {
|
2023-06-19 03:07:26 +02:00
|
|
|
Self::regs().cnt().write(|r| r.set_cnt(0));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
2022-07-11 00:36:10 +02:00
|
|
|
fn set_frequency(&mut self, frequency: Hertz) {
|
2021-12-08 17:36:40 +01:00
|
|
|
use core::convert::TryInto;
|
2022-07-11 00:36:10 +02:00
|
|
|
let f = frequency.0;
|
2021-12-08 17:36:40 +01:00
|
|
|
let timer_f = Self::frequency().0;
|
|
|
|
let pclk_ticks_per_timer_period = timer_f / f;
|
|
|
|
let psc: u16 = unwrap!(((pclk_ticks_per_timer_period - 1) / (1 << 16)).try_into());
|
2022-06-12 22:15:44 +02:00
|
|
|
let arr: u16 = unwrap!((pclk_ticks_per_timer_period / (u32::from(psc) + 1)).try_into());
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-02-28 16:20:42 +01:00
|
|
|
let regs = Self::regs();
|
2023-06-19 03:07:26 +02:00
|
|
|
regs.psc().write(|r| r.set_psc(psc));
|
|
|
|
regs.arr().write(|r| r.set_arr(arr));
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2023-06-19 03:07:26 +02:00
|
|
|
regs.cr1().modify(|r| r.set_urs(vals::Urs::COUNTERONLY));
|
|
|
|
regs.egr().write(|r| r.set_ug(true));
|
|
|
|
regs.cr1().modify(|r| r.set_urs(vals::Urs::ANYEVENT));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn clear_update_interrupt(&mut self) -> bool {
|
2022-02-28 16:20:42 +01:00
|
|
|
let regs = Self::regs();
|
2023-06-19 03:07:26 +02:00
|
|
|
let sr = regs.sr().read();
|
|
|
|
if sr.uif() {
|
|
|
|
regs.sr().modify(|r| {
|
|
|
|
r.set_uif(false);
|
|
|
|
});
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn enable_update_interrupt(&mut self, enable: bool) {
|
2023-06-19 03:07:26 +02:00
|
|
|
Self::regs().dier().write(|r| r.set_uie(enable));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! impl_32bit_timer {
|
|
|
|
($inst:ident) => {
|
|
|
|
impl sealed::GeneralPurpose32bitInstance for crate::peripherals::$inst {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_gp32() -> crate::pac::timer::TimGp32 {
|
2021-12-08 17:36:40 +01:00
|
|
|
crate::pac::$inst
|
|
|
|
}
|
|
|
|
|
2022-07-11 00:36:10 +02:00
|
|
|
fn set_frequency(&mut self, frequency: Hertz) {
|
2021-12-08 17:36:40 +01:00
|
|
|
use core::convert::TryInto;
|
2022-07-11 00:36:10 +02:00
|
|
|
let f = frequency.0;
|
2021-12-08 17:36:40 +01:00
|
|
|
let timer_f = Self::frequency().0;
|
|
|
|
let pclk_ticks_per_timer_period = (timer_f / f) as u64;
|
|
|
|
let psc: u16 = unwrap!(((pclk_ticks_per_timer_period - 1) / (1 << 32)).try_into());
|
2022-06-12 22:15:44 +02:00
|
|
|
let arr: u32 = unwrap!(((pclk_ticks_per_timer_period / (psc as u64 + 1)).try_into()));
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-02-28 16:20:42 +01:00
|
|
|
let regs = Self::regs_gp32();
|
2023-06-19 03:07:26 +02:00
|
|
|
regs.psc().write(|r| r.set_psc(psc));
|
|
|
|
regs.arr().write(|r| r.set_arr(arr));
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2023-06-19 03:07:26 +02:00
|
|
|
regs.cr1().modify(|r| r.set_urs(vals::Urs::COUNTERONLY));
|
|
|
|
regs.egr().write(|r| r.set_ug(true));
|
|
|
|
regs.cr1().modify(|r| r.set_urs(vals::Urs::ANYEVENT));
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! impl_compare_capable_16bit {
|
|
|
|
($inst:ident) => {
|
|
|
|
impl sealed::CaptureCompare16bitInstance for crate::peripherals::$inst {
|
|
|
|
fn enable_outputs(&mut self, _enable: bool) {}
|
|
|
|
|
|
|
|
fn set_output_compare_mode(&mut self, channel: Channel, mode: OutputCompareMode) {
|
|
|
|
use 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()));
|
|
|
|
}
|
|
|
|
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity) {
|
|
|
|
use sealed::GeneralPurpose16bitInstance;
|
|
|
|
Self::regs_gp16()
|
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_ccp(channel.raw(), polarity.into()));
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
fn enable_channel(&mut self, channel: Channel, enable: bool) {
|
|
|
|
use sealed::GeneralPurpose16bitInstance;
|
|
|
|
Self::regs_gp16()
|
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_cce(channel.raw(), enable));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_compare_value(&mut self, channel: Channel, value: u16) {
|
|
|
|
use sealed::GeneralPurpose16bitInstance;
|
|
|
|
Self::regs_gp16().ccr(channel.raw()).modify(|w| w.set_ccr(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_max_compare_value(&self) -> u16 {
|
|
|
|
use sealed::GeneralPurpose16bitInstance;
|
|
|
|
Self::regs_gp16().arr().read().arr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-26 01:40:43 +01:00
|
|
|
foreach_interrupt! {
|
2021-12-08 17:36:40 +01:00
|
|
|
($inst:ident, timer, TIM_BASIC, UP, $irq:ident) => {
|
|
|
|
impl_basic_16bit_timer!($inst, $irq);
|
2023-07-28 15:29:27 +02:00
|
|
|
impl Basic16bitInstance for crate::peripherals::$inst {}
|
2021-12-08 17:36:40 +01:00
|
|
|
};
|
|
|
|
($inst:ident, timer, TIM_GP16, UP, $irq:ident) => {
|
|
|
|
impl_basic_16bit_timer!($inst, $irq);
|
2023-07-28 15:29:27 +02:00
|
|
|
impl_compare_capable_16bit!($inst);
|
|
|
|
impl Basic16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl GeneralPurpose16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl CaptureCompare16bitInstance for crate::peripherals::$inst {}
|
2021-12-08 17:36:40 +01:00
|
|
|
|
|
|
|
impl sealed::GeneralPurpose16bitInstance for crate::peripherals::$inst {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_gp16() -> crate::pac::timer::TimGp16 {
|
2021-12-08 17:36:40 +01:00
|
|
|
crate::pac::$inst
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($inst:ident, timer, TIM_GP32, UP, $irq:ident) => {
|
|
|
|
impl_basic_16bit_timer!($inst, $irq);
|
2023-07-28 15:29:27 +02:00
|
|
|
impl_32bit_timer!($inst);
|
|
|
|
impl_compare_capable_16bit!($inst);
|
|
|
|
impl Basic16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl CaptureCompare16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl CaptureCompare32bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl GeneralPurpose16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl GeneralPurpose32bitInstance for crate::peripherals::$inst {}
|
|
|
|
|
|
|
|
impl sealed::CaptureCompare32bitInstance for crate::peripherals::$inst {
|
|
|
|
fn set_output_compare_mode(
|
|
|
|
&mut self,
|
|
|
|
channel: 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()));
|
|
|
|
}
|
|
|
|
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity) {
|
|
|
|
use crate::timer::sealed::GeneralPurpose32bitInstance;
|
|
|
|
Self::regs_gp32()
|
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_ccp(channel.raw(), polarity.into()));
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +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));
|
|
|
|
}
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2023-07-28 15:29:27 +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));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_max_compare_value(&self) -> u32 {
|
|
|
|
use crate::timer::sealed::GeneralPurpose32bitInstance;
|
|
|
|
Self::regs_gp32().arr().read().arr() as u32
|
|
|
|
}
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl sealed::GeneralPurpose16bitInstance for crate::peripherals::$inst {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_gp16() -> crate::pac::timer::TimGp16 {
|
2023-06-19 03:07:26 +02:00
|
|
|
unsafe { crate::pac::timer::TimGp16::from_ptr(crate::pac::$inst.as_ptr()) }
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($inst:ident, timer, TIM_ADV, UP, $irq:ident) => {
|
|
|
|
impl_basic_16bit_timer!($inst, $irq);
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
impl Basic16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl GeneralPurpose16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl CaptureCompare16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl ComplementaryCaptureCompare16bitInstance for crate::peripherals::$inst {}
|
|
|
|
impl AdvancedControlInstance for crate::peripherals::$inst {}
|
2021-12-08 17:36:40 +01:00
|
|
|
|
2022-07-12 14:06:16 +02:00
|
|
|
impl sealed::GeneralPurpose16bitInstance for crate::peripherals::$inst {
|
|
|
|
fn regs_gp16() -> crate::pac::timer::TimGp16 {
|
2023-06-19 03:07:26 +02:00
|
|
|
unsafe { crate::pac::timer::TimGp16::from_ptr(crate::pac::$inst.as_ptr()) }
|
2022-07-12 14:06:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-08 17:36:40 +01:00
|
|
|
impl sealed::AdvancedControlInstance for crate::peripherals::$inst {
|
2022-02-28 16:20:42 +01:00
|
|
|
fn regs_advanced() -> crate::pac::timer::TimAdv {
|
2021-12-08 17:36:40 +01:00
|
|
|
crate::pac::$inst
|
|
|
|
}
|
|
|
|
}
|
2022-07-12 14:06:16 +02:00
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
impl sealed::CaptureCompare16bitInstance for crate::peripherals::$inst {
|
|
|
|
fn enable_outputs(&mut self, enable: bool) {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
let r = Self::regs_advanced();
|
|
|
|
r.bdtr().modify(|w| w.set_moe(enable));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_output_compare_mode(
|
|
|
|
&mut self,
|
|
|
|
channel: 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-08-18 16:37:44 +02:00
|
|
|
fn set_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity) {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
Self::regs_advanced()
|
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_ccp(channel.raw(), polarity.into()));
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +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));
|
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_max_compare_value(&self) -> u16 {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
Self::regs_advanced().arr().read().arr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl sealed::ComplementaryCaptureCompare16bitInstance for crate::peripherals::$inst {
|
2023-08-18 16:37:44 +02:00
|
|
|
fn set_complementary_output_polarity(&mut self, channel: Channel, polarity: OutputPolarity) {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
Self::regs_advanced()
|
|
|
|
.ccer()
|
|
|
|
.modify(|w| w.set_ccnp(channel.raw(), polarity.into()));
|
|
|
|
}
|
|
|
|
|
2023-07-28 15:29:27 +02:00
|
|
|
fn set_dead_time_clock_division(&mut self, value: vals::Ckd) {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
Self::regs_advanced().cr1().modify(|w| w.set_ckd(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_dead_time_value(&mut self, value: u8) {
|
|
|
|
use crate::timer::sealed::AdvancedControlInstance;
|
|
|
|
Self::regs_advanced().bdtr().modify(|w| w.set_dtg(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
}
|
2021-12-08 17:36:40 +01:00
|
|
|
}
|
2023-07-28 15:29:27 +02:00
|
|
|
|
|
|
|
|
2021-12-08 17:36:40 +01:00
|
|
|
};
|
|
|
|
}
|