#[repr(transparent)]pub struct PllArm(pub u32);Expand description
Analog ARM PLL control Register
Tuple Fields§
§0: u32Implementations§
Source§impl PllArm
impl PllArm
Sourcepub const fn div_select(&self) -> u8
pub const fn div_select(&self) -> u8
This field controls the PLL loop divider
Sourcepub const fn set_div_select(&mut self, val: u8)
pub const fn set_div_select(&mut self, val: u8)
This field controls the PLL loop divider
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 the clock output.
Sourcepub const fn bypass_clk_src(&self) -> PllArmBypassClkSrc
pub const fn bypass_clk_src(&self) -> PllArmBypassClkSrc
Determines the bypass source
Sourcepub const fn set_bypass_clk_src(&mut self, val: PllArmBypassClkSrc)
pub const fn set_bypass_clk_src(&mut self, val: PllArmBypassClkSrc)
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.
Sourcepub const fn set_pll_sel(&mut self, val: bool)
pub const fn set_pll_sel(&mut self, val: bool)
Reserved
Trait Implementations§
impl Copy for PllArm
impl Eq for PllArm
impl StructuralPartialEq for PllArm
Auto Trait Implementations§
impl Freeze for PllArm
impl RefUnwindSafe for PllArm
impl Send for PllArm
impl Sync for PllArm
impl Unpin for PllArm
impl UnwindSafe for PllArm
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