[][src]Enum nrf52::pwm0::prescaler::PRESCALERR

pub enum PRESCALERR {
    DIV_1,
    DIV_2,
    DIV_4,
    DIV_8,
    DIV_16,
    DIV_32,
    DIV_64,
    DIV_128,
}

Possible values of the field PRESCALER

Variants

DIV_1

Divide by 1 (16MHz)

DIV_2

Divide by 2 ( 8MHz)

DIV_4

Divide by 4 ( 4MHz)

DIV_8

Divide by 8 ( 2MHz)

DIV_16

Divide by 16 ( 1MHz)

DIV_32

Divide by 32 ( 500kHz)

DIV_64

Divide by 64 ( 250kHz)

DIV_128

Divide by 128 ( 125kHz)

Methods

impl PRESCALERR[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_div_1(&self) -> bool[src]

Checks if the value of the field is DIV_1

pub fn is_div_2(&self) -> bool[src]

Checks if the value of the field is DIV_2

pub fn is_div_4(&self) -> bool[src]

Checks if the value of the field is DIV_4

pub fn is_div_8(&self) -> bool[src]

Checks if the value of the field is DIV_8

pub fn is_div_16(&self) -> bool[src]

Checks if the value of the field is DIV_16

pub fn is_div_32(&self) -> bool[src]

Checks if the value of the field is DIV_32

pub fn is_div_64(&self) -> bool[src]

Checks if the value of the field is DIV_64

pub fn is_div_128(&self) -> bool[src]

Checks if the value of the field is DIV_128

Trait Implementations

impl Debug for PRESCALERR[src]

impl PartialEq<PRESCALERR> for PRESCALERR[src]

impl Copy for PRESCALERR[src]

impl StructuralPartialEq for PRESCALERR[src]

impl Clone for PRESCALERR[src]

Auto Trait Implementations

impl Unpin for PRESCALERR

impl Send for PRESCALERR

impl Sync for PRESCALERR

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self