[][src]Enum ambiq_apollo1_pac::uart::cr::CLKSEL_A

#[repr(u8)]
pub enum CLKSEL_A {
    NOCLK,
    _24MHZ,
    _12MHZ,
    _6MHZ,
    _3MHZ,
}

This bitfield is the UART clock select.

Value on reset: 0

Variants

NOCLK

0: No UART clock. This is the low power default.

_24MHZ

1: 24 MHz clock. Must be used if CLKGEN CORESEL=0.

_12MHZ

2: 12 MHz clock. Must be used if CLKGEN CORESEL=1. Note that CORESEL=1 is unsupported by the IO Master.

_6MHZ

3: 6 MHz clock. Must be used if CLKGEN CORESEL=2, 3, or 4. Note that CORESEL=2 is unsupported.

_3MHZ

4: 3 MHz clock. Must be used if CLKGEN CORESEL=5, 6, or 7.

Trait Implementations

impl Clone for CLKSEL_A[src]

impl Copy for CLKSEL_A[src]

impl Debug for CLKSEL_A[src]

impl From<CLKSEL_A> for u8[src]

impl PartialEq<CLKSEL_A> for CLKSEL_A[src]

impl StructuralPartialEq for CLKSEL_A[src]

Auto Trait Implementations

impl Send for CLKSEL_A

impl Sync for CLKSEL_A

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