#[repr(transparent)]pub struct PllVideoSet(pub u32);Expand description
Analog Video PLL control Register
Tuple Fields§
§0: u32Implementations§
Source§impl PllVideoSet
impl PllVideoSet
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) -> PllVideoSetBypassClkSrc
pub const fn bypass_clk_src(&self) -> PllVideoSetBypassClkSrc
Determines the bypass source.
Sourcepub const fn set_bypass_clk_src(&mut self, val: PllVideoSetBypassClkSrc)
pub const fn set_bypass_clk_src(&mut self, val: PllVideoSetBypassClkSrc)
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) -> PllVideoSetPostDivSelect
pub const fn post_div_select(&self) -> PllVideoSetPostDivSelect
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: PllVideoSetPostDivSelect)
pub const fn set_post_div_select(&mut self, val: PllVideoSetPostDivSelect)
These bits implement a divider after the PLL, but before the enable and bypass mux.
Trait Implementations§
Source§impl Clone for PllVideoSet
impl Clone for PllVideoSet
Source§fn clone(&self) -> PllVideoSet
fn clone(&self) -> PllVideoSet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PllVideoSet
impl Debug for PllVideoSet
Source§impl Default for PllVideoSet
impl Default for PllVideoSet
Source§fn default() -> PllVideoSet
fn default() -> PllVideoSet
Returns the “default value” for a type. Read more
Source§impl PartialEq for PllVideoSet
impl PartialEq for PllVideoSet
impl Copy for PllVideoSet
impl Eq for PllVideoSet
impl StructuralPartialEq for PllVideoSet
Auto Trait Implementations§
impl Freeze for PllVideoSet
impl RefUnwindSafe for PllVideoSet
impl Send for PllVideoSet
impl Sync for PllVideoSet
impl Unpin for PllVideoSet
impl UnwindSafe for PllVideoSet
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