pub struct ComplementaryPwmPin<'d, T, C> { /* private fields */ }
Expand description
HRTIM complementary PWM pin.
Implementations§
Source§impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChA<T>>
impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChA<T>>
Sourcepub fn new_cha(
pin: impl Peripheral<P = impl ChannelAComplementaryPin<T>> + 'd,
) -> Self
pub fn new_cha( pin: impl Peripheral<P = impl ChannelAComplementaryPin<T>> + 'd, ) -> Self
Create a new ChA complementary PWM pin instance.
Source§impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChB<T>>
impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChB<T>>
Sourcepub fn new_chb(
pin: impl Peripheral<P = impl ChannelBComplementaryPin<T>> + 'd,
) -> Self
pub fn new_chb( pin: impl Peripheral<P = impl ChannelBComplementaryPin<T>> + 'd, ) -> Self
Create a new ChB complementary PWM pin instance.
Source§impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChC<T>>
impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChC<T>>
Sourcepub fn new_chc(
pin: impl Peripheral<P = impl ChannelCComplementaryPin<T>> + 'd,
) -> Self
pub fn new_chc( pin: impl Peripheral<P = impl ChannelCComplementaryPin<T>> + 'd, ) -> Self
Create a new ChC complementary PWM pin instance.
Source§impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChD<T>>
impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChD<T>>
Sourcepub fn new_chd(
pin: impl Peripheral<P = impl ChannelDComplementaryPin<T>> + 'd,
) -> Self
pub fn new_chd( pin: impl Peripheral<P = impl ChannelDComplementaryPin<T>> + 'd, ) -> Self
Create a new ChD complementary PWM pin instance.
Source§impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChE<T>>
impl<'d, T: Instance> ComplementaryPwmPin<'d, T, ChE<T>>
Sourcepub fn new_che(
pin: impl Peripheral<P = impl ChannelEComplementaryPin<T>> + 'd,
) -> Self
pub fn new_che( pin: impl Peripheral<P = impl ChannelEComplementaryPin<T>> + 'd, ) -> Self
Create a new ChE complementary PWM pin instance.
Auto Trait Implementations§
impl<'d, T, C> Freeze for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> RefUnwindSafe for ComplementaryPwmPin<'d, T, C>where
T: RefUnwindSafe,
C: RefUnwindSafe,
impl<'d, T, C> Send for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> Sync for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> Unpin for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> !UnwindSafe for ComplementaryPwmPin<'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