use core::marker::PhantomData; use embassy_hal_internal::{into_ref, PeripheralRef}; use super::*; use crate::gpio::sealed::AFType; use crate::gpio::AnyPin; use crate::Peripheral; pub enum Direction { Upcounting, Downcounting, } pub struct Ch1; pub struct Ch2; pub struct QeiPin<'d, Perip, Channel> { _pin: PeripheralRef<'d, AnyPin>, phantom: PhantomData<(Perip, Channel)>, } macro_rules! channel_impl { ($new_chx:ident, $channel:ident, $pin_trait:ident) => { impl<'d, Perip: CaptureCompare16bitInstance> QeiPin<'d, Perip, $channel> { pub fn $new_chx(pin: impl Peripheral
> + 'd) -> Self { into_ref!(pin); critical_section::with(|_| { pin.set_low(); pin.set_as_af(pin.af_num(), AFType::Input); #[cfg(gpio_v2)] pin.set_speed(crate::gpio::Speed::VeryHigh); }); QeiPin { _pin: pin.map_into(), phantom: PhantomData, } } } }; } channel_impl!(new_ch1, Ch1, Channel1Pin); channel_impl!(new_ch2, Ch2, Channel2Pin); pub struct SimplePwm<'d, T> { _inner: PeripheralRef<'d, T>, } impl<'d, T: CaptureCompare16bitInstance> SimplePwm<'d, T> { pub fn new(tim: impl Peripheral
+ 'd, _ch1: QeiPin<'d, T, Ch1>, _ch2: QeiPin<'d, T, Ch2>) -> Self { Self::new_inner(tim) } fn new_inner(tim: impl Peripheral
+ 'd) -> Self {
into_ref!(tim);
T::enable();