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