[][src]Enum lpc81x_pac::wkt::ctrl::CLKSELR

pub enum CLKSELR {
    DIVIDED_IRC_CLOCK_T,
    LOW_POWER_CLOCK_THI,
}

Possible values of the field CLKSEL

Variants

DIVIDED_IRC_CLOCK_T

Divided IRC clock. This clock runs at 750 kHz and provides time-out periods of up to approximately 95 minutes in 1.33 us increments. This clock is not available in most low-power modes and must not be selected if the timer is to be used to wake up from one of these modes.

LOW_POWER_CLOCK_THI

Low power clock. This is the (nominally) 10 kHz clock and provides time-out periods of up to approximately 119 hours in 100 CTS can be from the input pin, or fs increments. The accuracy of this clock is limited to +/- 45 % over temperature and processing. This clock is available in all power modes. Prior to use, the low-power oscillator must be enabled. The oscillator must also be set to remain active in Deep power-down if needed.

Methods

impl CLKSELR[src]

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

Returns true if the bit is clear (0)

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

Returns true if the bit is set (1)

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

Value of the field as raw bits

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

Checks if the value of the field is DIVIDED_IRC_CLOCK_T

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

Checks if the value of the field is LOW_POWER_CLOCK_THI

Trait Implementations

impl PartialEq<CLKSELR> for CLKSELR[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Debug for CLKSELR[src]

impl Copy for CLKSELR[src]

impl Clone for CLKSELR[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for CLKSELR

impl Sync for CLKSELR

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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