#[repr(u8)]
pub enum OC1M_A {
    Frozen,
    ActiveOnMatch,
    InactiveOnMatch,
    Toggle,
    ForceInactive,
    ForceActive,
    PwmMode1,
    PwmMode2,
}
Expand description

OC1M

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.