OC2M_A

Enum OC2M_A 

Source
#[repr(u8)]
pub enum OC2M_A {
Show 14 variants FROZEN = 0, ACTIVEONMATCH = 1, INACTIVEONMATCH = 2, TOGGLE = 3, FORCEINACTIVE = 4, FORCEACTIVE = 5, PWMMODE1 = 6, PWMMODE2 = 7, OPMMODE1 = 8, OPMMODE2 = 9, COMBINEDPWMMODE1 = 12, COMBINEDPWMMODE2 = 13, ASYMMETRICPWMMODE1 = 14, ASYMMETRICPWMMODE2 = 15,
}
Expand description

Output Compare 2 mode

Value on reset: 0

Variants§

§

FROZEN = 0

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

§

ACTIVEONMATCH = 1

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

§

INACTIVEONMATCH = 2

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

§

TOGGLE = 3

3: OCyREF toggles when TIMx_CNT=TIMx_CCRy

§

FORCEINACTIVE = 4

4: OCyREF is forced low

§

FORCEACTIVE = 5

5: OCyREF is forced high

§

PWMMODE1 = 6

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

7: Inversely to PwmMode1

§

OPMMODE1 = 8

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

§

OPMMODE2 = 9

9: Inversely to OpmMode1

§

COMBINEDPWMMODE1 = 12

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

§

COMBINEDPWMMODE2 = 13

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

§

ASYMMETRICPWMMODE1 = 14

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

§

ASYMMETRICPWMMODE2 = 15

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

Trait Implementations§

Source§

impl Clone for OC2M_A

Source§

fn clone(&self) -> OC2M_A

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OC2M_A

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<OC2M_A> for u8

Source§

fn from(variant: OC2M_A) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for OC2M_A

Source§

fn eq(&self, other: &OC2M_A) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for OC2M_A

Source§

impl StructuralPartialEq for OC2M_A

Auto Trait Implementations§

§

impl Freeze for OC2M_A

§

impl RefUnwindSafe for OC2M_A

§

impl Send for OC2M_A

§

impl Sync for OC2M_A

§

impl Unpin for OC2M_A

§

impl UnwindSafe for OC2M_A

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.