pub struct PllConfig {
pub m: u8,
pub n: u8,
pub r: u8,
}Expand description
Pll Configuration - Calculation = ((SourceClk / m) * n) / r
Fields§
§m: u8Main PLL Division factor
n: u8Main Pll Multiplication factor
r: u8Main PLL division factor for PLLCLK (system clock)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PllConfig
impl RefUnwindSafe for PllConfig
impl Send for PllConfig
impl Sync for PllConfig
impl Unpin for PllConfig
impl UnwindSafe for PllConfig
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