[][src]Enum stm32f0xx_hal::stm32::rcc::cfgr::MCO_A

#[repr(u8)]pub enum MCO_A {
    HSI14,
    HSI48,
    NOMCO,
    LSI,
    LSE,
    SYSCLK,
    HSI,
    HSE,
    PLL,
}

Microcontroller clock output

Value on reset: 0

Variants

HSI14

1: Internal RC 14 MHz (HSI14) oscillator clock selected

HSI48

8: Internal RC 48 MHz (HSI48) oscillator clock selected

NOMCO

0: MCO output disabled, no clock on MCO

LSI

2: Internal low speed (LSI) oscillator clock selected

LSE

3: External low speed (LSE) oscillator clock selected

SYSCLK

4: System clock selected

HSI

5: Internal RC 8 MHz (HSI) oscillator clock selected

HSE

6: External 4-32 MHz (HSE) oscillator clock selected

PLL

7: PLL clock selected (divided by 1 or 2, depending en PLLNODIV)

Trait Implementations

impl Clone for MCO_A[src]

impl Copy for MCO_A[src]

impl Debug for MCO_A[src]

impl PartialEq<MCO_A> for MCO_A[src]

Auto Trait Implementations

impl Send for MCO_A

impl Sync for MCO_A

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