pub enum PllSource {
MSIS(Msirange),
HSE(Hertz),
HSI,
}
Variants§
MSIS(Msirange)
Use an internal medium speed oscillator as the PLL source.
HSE(Hertz)
Use the external high speed clock as the system PLL source.
HSE clocks faster than 25 MHz require at least VoltageScale::RANGE3
, and HSE clocks must
never exceed 50 MHz.
HSI
Use the 16 MHz internal high speed oscillator as the PLL source.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PllSource
impl RefUnwindSafe for PllSource
impl Send for PllSource
impl Sync for PllSource
impl Unpin for PllSource
impl UnwindSafe for PllSource
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more