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