Struct nucleo_h7xx::pac::tim1::ccmr1_output::OC2M_W[]

pub struct OC2M_W<'a> { /* fields omitted */ }

Write proxy for field OC2M

Implementations

impl<'a> OC2M_W<'a>

pub fn variant(self, variant: OC1M_A) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Writes variant to the field

pub fn frozen(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

The comparison between the output compare register TIMx_CCRy and the counter TIMx_CNT has no effect on the outputs

pub fn active_on_match(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Set channel to active level on match. OCyREF signal is forced high when the counter matches the capture/compare register

pub fn inactive_on_match(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Set channel to inactive level on match. OCyREF signal is forced low when the counter matches the capture/compare register

pub fn toggle(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF toggles when TIMx_CNT=TIMx_CCRy

pub fn force_inactive(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF is forced low

pub fn force_active(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF is forced high

pub fn pwm_mode1(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

In upcounting, channel is active as long as TIMx_CNT<TIMx_CCRy else inactive. In downcounting, channel is inactive as long as TIMx_CNT>TIMx_CCRy else active

pub fn pwm_mode2(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Inversely to PwmMode1

pub fn opm_mode1(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Retriggerable OPM mode 1 - In up-counting mode, the channel is active until a trigger event is detected (on TRGI signal). In down-counting mode, the channel is inactive

pub fn opm_mode2(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Inversely to OpmMode1

pub fn combined_pwm_mode1(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF has the same behavior as in PWM mode 1. OCyREFC is the logical OR between OC1REF and OC2REF

pub fn combined_pwm_mode2(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF has the same behavior as in PWM mode 2. OCyREFC is the logical AND between OC1REF and OC2REF

pub fn asymmetric_pwm_mode1(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF has the same behavior as in PWM mode 1. OCyREFC outputs OC1REF when the counter is counting up, OC2REF when it is counting down

pub fn asymmetric_pwm_mode2(self) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

OCyREF has the same behavior as in PWM mode 2. OCyREFC outputs OC1REF when the counter is counting up, OC2REF when it is counting down

pub unsafe fn bits(self, value: u8) -> &'a mut W<u32, Reg<u32, _CCMR1_OUTPUT>>

Writes raw bits to the field

Auto Trait Implementations

impl<'a> Send for OC2M_W<'a>

impl<'a> !Sync for OC2M_W<'a>

impl<'a> Unpin for OC2M_W<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.