[][src]Enum nrf52811_pac::pwm0::prescaler::PRESCALER_A

#[repr(u8)]pub enum PRESCALER_A {
    DIV_1,
    DIV_2,
    DIV_4,
    DIV_8,
    DIV_16,
    DIV_32,
    DIV_64,
    DIV_128,
}

Prescaler of PWM_CLK

Value on reset: 0

Variants

DIV_1

0: Divide by 1 (16 MHz)

DIV_2

1: Divide by 2 (8 MHz)

DIV_4

2: Divide by 4 (4 MHz)

DIV_8

3: Divide by 8 (2 MHz)

DIV_16

4: Divide by 16 (1 MHz)

DIV_32

5: Divide by 32 (500 kHz)

DIV_64

6: Divide by 64 (250 kHz)

DIV_128

7: Divide by 128 (125 kHz)

Trait Implementations

impl Clone for PRESCALER_A[src]

impl Copy for PRESCALER_A[src]

impl Debug for PRESCALER_A[src]

impl From<PRESCALER_A> for u8[src]

impl PartialEq<PRESCALER_A> for PRESCALER_A[src]

impl StructuralPartialEq for PRESCALER_A[src]

Auto Trait Implementations

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.