pub struct Pll {
pub source: PllSource,
pub prediv: PllPreDiv,
pub mul: PllMul,
pub divp: Option<PllDiv>,
pub divq: Option<PllDiv>,
pub divr: Option<PllDiv>,
}
Fields§
§source: PllSource
Source clock selection.
prediv: PllPreDiv
PLL pre-divider (DIVM).
mul: PllMul
PLL multiplication factor.
divp: Option<PllDiv>
PLL P division factor. If None, PLL P output is disabled. On PLL1, it must be even for most series (in particular, it cannot be 1 in series other than stm32h7, stm32h7rs23/733, stm32h7, stm32h7rs25/735 and stm32h7, stm32h7rs30.)
divq: Option<PllDiv>
PLL Q division factor. If None, PLL Q output is disabled.
divr: Option<PllDiv>
PLL R division factor. If None, PLL R output is disabled.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pll
impl RefUnwindSafe for Pll
impl Send for Pll
impl Sync for Pll
impl Unpin for Pll
impl UnwindSafe for Pll
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)