[][src]Enum stm32f0xx_hal::pac::tim2::ccmr2_output::OC4M_A

#[repr(u8)]pub enum OC4M_A {
    FROZEN,
    ACTIVEONMATCH,
    INACTIVEONMATCH,
    TOGGLE,
    FORCEINACTIVE,
    FORCEACTIVE,
    PWMMODE1,
    PWMMODE2,
}

Output compare 4 mode

Value on reset: 0

Variants

FROZEN

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

ACTIVEONMATCH

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

INACTIVEONMATCH

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

TOGGLE

3: OCyREF toggles when TIMx_CNT=TIMx_CCRy

FORCEINACTIVE

4: OCyREF is forced low

FORCEACTIVE

5: OCyREF is forced high

PWMMODE1

6: 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

PWMMODE2

7: Inversely to PwmMode1

Trait Implementations

impl Clone for OC4M_A[src]

impl Copy for OC4M_A[src]

impl Debug for OC4M_A[src]

impl PartialEq<OC4M_A> for OC4M_A[src]

Auto Trait Implementations

impl Send for OC4M_A

impl Sync for OC4M_A

impl Unpin for OC4M_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.