#[repr(transparent)]pub struct PllSysSet(pub u32);Expand description
Analog System PLL Control Register
Tuple Fields§
§0: u32Implementations§
Source§impl PllSysSet
impl PllSysSet
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) -> PllSysSetBypassClkSrc
pub const fn bypass_clk_src(&self) -> PllSysSetBypassClkSrc
Determines the bypass source.
Sourcepub const fn set_bypass_clk_src(&mut self, val: PllSysSetBypassClkSrc)
pub const fn set_bypass_clk_src(&mut self, val: PllSysSetBypassClkSrc)
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 PllSysSet
impl Eq for PllSysSet
impl StructuralPartialEq for PllSysSet
Auto Trait Implementations§
impl Freeze for PllSysSet
impl RefUnwindSafe for PllSysSet
impl Send for PllSysSet
impl Sync for PllSysSet
impl Unpin for PllSysSet
impl UnwindSafe for PllSysSet
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