#[repr(transparent)]pub struct PllSysTog(pub u32);Expand description
Analog System PLL Control Register
Tuple Fields§
§0: u32Implementations§
Source§impl PllSysTog
impl PllSysTog
Sourcepub const fn div_select(&self) -> bool
pub const fn div_select(&self) -> bool
This field controls the PLL loop divider. 0 - Fout=Fref20; 1 - Fout=Fref22.
Sourcepub const fn set_div_select(&mut self, val: bool)
pub const fn set_div_select(&mut self, val: bool)
This field controls the PLL loop divider. 0 - Fout=Fref20; 1 - Fout=Fref22.
Sourcepub const fn set_powerdown(&mut self, val: bool)
pub const fn set_powerdown(&mut self, val: bool)
Powers down the PLL.
Sourcepub const fn set_enable(&mut self, val: bool)
pub const fn set_enable(&mut self, val: bool)
Enable PLL output
Sourcepub const fn bypass_clk_src(&self) -> PllSysTogBypassClkSrc
pub const fn bypass_clk_src(&self) -> PllSysTogBypassClkSrc
Determines the bypass source.
Sourcepub const fn set_bypass_clk_src(&mut self, val: PllSysTogBypassClkSrc)
pub const fn set_bypass_clk_src(&mut self, val: PllSysTogBypassClkSrc)
Determines the bypass source.
Sourcepub const fn set_bypass(&mut self, val: bool)
pub const fn set_bypass(&mut self, val: bool)
Bypass the PLL.
Trait Implementations§
impl Copy for PllSysTog
impl Eq for PllSysTog
impl StructuralPartialEq for PllSysTog
Auto Trait Implementations§
impl Freeze for PllSysTog
impl RefUnwindSafe for PllSysTog
impl Send for PllSysTog
impl Sync for PllSysTog
impl Unpin for PllSysTog
impl UnwindSafe for PllSysTog
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