Struct embassy_stm32::timer::simple_pwm::PwmPin
source · pub struct PwmPin<'d, T, C> { /* private fields */ }
Expand description
PWM pin wrapper.
This wraps a pin to make it usable with PWM.
Implementations§
source§impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch1>
impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch1>
sourcepub fn new_ch1(
pin: impl Peripheral<P = impl Channel1Pin<T>> + 'd,
output_type: OutputType
) -> Self
pub fn new_ch1( pin: impl Peripheral<P = impl Channel1Pin<T>> + 'd, output_type: OutputType ) -> Self
Create a new Ch1 PWM pin instance.
source§impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch2>
impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch2>
sourcepub fn new_ch2(
pin: impl Peripheral<P = impl Channel2Pin<T>> + 'd,
output_type: OutputType
) -> Self
pub fn new_ch2( pin: impl Peripheral<P = impl Channel2Pin<T>> + 'd, output_type: OutputType ) -> Self
Create a new Ch2 PWM pin instance.
source§impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch3>
impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch3>
sourcepub fn new_ch3(
pin: impl Peripheral<P = impl Channel3Pin<T>> + 'd,
output_type: OutputType
) -> Self
pub fn new_ch3( pin: impl Peripheral<P = impl Channel3Pin<T>> + 'd, output_type: OutputType ) -> Self
Create a new Ch3 PWM pin instance.
source§impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch4>
impl<'d, T: CaptureCompare16bitInstance> PwmPin<'d, T, Ch4>
sourcepub fn new_ch4(
pin: impl Peripheral<P = impl Channel4Pin<T>> + 'd,
output_type: OutputType
) -> Self
pub fn new_ch4( pin: impl Peripheral<P = impl Channel4Pin<T>> + 'd, output_type: OutputType ) -> Self
Create a new Ch4 PWM pin instance.
Auto Trait Implementations§
impl<'d, T, C> Freeze for PwmPin<'d, T, C>
impl<'d, T, C> RefUnwindSafe for PwmPin<'d, T, C>where
T: RefUnwindSafe,
C: RefUnwindSafe,
impl<'d, T, C> Send for PwmPin<'d, T, C>
impl<'d, T, C> Sync for PwmPin<'d, T, C>
impl<'d, T, C> Unpin for PwmPin<'d, T, C>
impl<'d, T, C> !UnwindSafe for PwmPin<'d, T, C>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more