Enum OC1M

Source
#[repr(u8)]
pub enum OC1M { Frozen = 0, ActiveOnMatch = 1, InactiveOnMatch = 2, Toggle = 3, ForceInactive = 4, ForceActive = 5, PwmMode1 = 6, PwmMode2 = 7, }
Expand description

Output compare %s 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 / OpmMode1: 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

§

ActiveOnMatch = 1

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

§

InactiveOnMatch = 2

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

§

Toggle = 3

3: OCyREF toggles when TIMx_CNT=TIMx_CCRy / Reserved

§

ForceInactive = 4

4: OCyREF is forced low / CombinedPwmMode1: OCyREF has the same behavior as in PWM mode 1. OCyREFC is the logical OR between OC1REF and OC2REF

§

ForceActive = 5

5: OCyREF is forced high / CombinedPwmMode2: OCyREF has the same behavior as in PWM mode 2. OCyREFC is the logical AND between OC1REF and OC2REF

§

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 / AsymmetricPwmMode1: 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

§

PwmMode2 = 7

7: Inversely to PwmMode1 / AsymmetricPwmMode2: Inversely to AsymmetricPwmMode1

Trait Implementations§

Source§

impl Clone for OC1M

Source§

fn clone(&self) -> OC1M

Returns a copy 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 OC1M

Source§

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

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

impl FieldSpec for OC1M

Source§

type Ux = u8

Raw field type (u8, u16, u32, …).
Source§

impl Format for OC1M

Source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.
Source§

impl From<OC1M> for u8

Source§

fn from(variant: OC1M) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for OC1M

Source§

fn eq(&self, other: &OC1M) -> 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 OC1M

Source§

impl Eq for OC1M

Source§

impl IsEnum for OC1M

Source§

impl StructuralPartialEq for OC1M

Auto Trait Implementations§

§

impl Freeze for OC1M

§

impl RefUnwindSafe for OC1M

§

impl Send for OC1M

§

impl Sync for OC1M

§

impl Unpin for OC1M

§

impl UnwindSafe for OC1M

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.