[][src]Enum efm32pg12_pac::letimer0::ctrl::REPMODE_A

#[repr(u8)]
pub enum REPMODE_A {
    FREE,
    ONESHOT,
    BUFFERED,
    DOUBLE,
}

Repeat Mode

Value on reset: 0

Variants

FREE

0: When started, the LETIMER counts down until it is stopped by software

ONESHOT

1: The counter counts REP0 times. When REP0 reaches zero, the counter stops

BUFFERED

2: The counter counts REP0 times. If REP1 has been written, it is loaded into REP0 when REP0 reaches zero, otherwise the counter stops

DOUBLE

3: Both REP0 and REP1 are decremented when the LETIMER wraps around. The LETIMER counts until both REP0 and REP1 are zero

Trait Implementations

impl Clone for REPMODE_A[src]

impl Copy for REPMODE_A[src]

impl Debug for REPMODE_A[src]

impl From<REPMODE_A> for u8[src]

impl PartialEq<REPMODE_A> for REPMODE_A[src]

impl StructuralPartialEq for REPMODE_A[src]

Auto Trait Implementations

impl Send for REPMODE_A

impl Sync for REPMODE_A

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