#[repr(transparent)]pub struct PllVideo(pub u32);Expand description
Analog Video PLL control Register
Tuple Fields§
§0: u32Implementations§
Source§impl PllVideo
impl PllVideo
Sourcepub const fn div_select(&self) -> u8
pub const fn div_select(&self) -> u8
This field controls the PLL loop divider. Valid range for DIV_SELECT divider value: 27~54.
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. Valid range for DIV_SELECT divider value: 27~54.
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) -> PllVideoBypassClkSrc
pub const fn bypass_clk_src(&self) -> PllVideoBypassClkSrc
Determines the bypass source.
Sourcepub const fn set_bypass_clk_src(&mut self, val: PllVideoBypassClkSrc)
pub const fn set_bypass_clk_src(&mut self, val: PllVideoBypassClkSrc)
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 post_div_select(&self) -> PllVideoPostDivSelect
pub const fn post_div_select(&self) -> PllVideoPostDivSelect
These bits implement a divider after the PLL, but before the enable and bypass mux.
Sourcepub const fn set_post_div_select(&mut self, val: PllVideoPostDivSelect)
pub const fn set_post_div_select(&mut self, val: PllVideoPostDivSelect)
These bits implement a divider after the PLL, but before the enable and bypass mux.
Trait Implementations§
impl Copy for PllVideo
impl Eq for PllVideo
impl StructuralPartialEq for PllVideo
Auto Trait Implementations§
impl Freeze for PllVideo
impl RefUnwindSafe for PllVideo
impl Send for PllVideo
impl Sync for PllVideo
impl Unpin for PllVideo
impl UnwindSafe for PllVideo
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