Struct rp2040_pac2::clocks::regs::ClkGpout0Ctrl[][src]

#[repr(transparent)]pub struct ClkGpout0Ctrl(pub u32);

Clock control, can be changed on-the-fly (except for auxsrc)

Implementations

impl ClkGpout0Ctrl[src]

pub const fn nudge(&self) -> bool[src]

An edge on this signal shifts the phase of the output by 1 cycle of the input clock This can be done at any time

pub fn set_nudge(&mut self, val: bool)[src]

An edge on this signal shifts the phase of the output by 1 cycle of the input clock This can be done at any time

pub const fn phase(&self) -> u8[src]

This delays the enable signal by up to 3 cycles of the input clock This must be set before the clock is enabled to have any effect

pub fn set_phase(&mut self, val: u8)[src]

This delays the enable signal by up to 3 cycles of the input clock This must be set before the clock is enabled to have any effect

pub const fn dc50(&self) -> bool[src]

Enables duty cycle correction for odd divisors

pub fn set_dc50(&mut self, val: bool)[src]

Enables duty cycle correction for odd divisors

pub const fn enable(&self) -> bool[src]

Starts and stops the clock generator cleanly

pub fn set_enable(&mut self, val: bool)[src]

Starts and stops the clock generator cleanly

pub const fn kill(&self) -> bool[src]

Asynchronously kills the clock generator

pub fn set_kill(&mut self, val: bool)[src]

Asynchronously kills the clock generator

pub const fn auxsrc(&self) -> ClkGpout0CtrlAuxsrc[src]

Selects the auxiliary clock source, will glitch when switching

pub fn set_auxsrc(&mut self, val: ClkGpout0CtrlAuxsrc)[src]

Selects the auxiliary clock source, will glitch when switching

Trait Implementations

impl Clone for ClkGpout0Ctrl[src]

impl Copy for ClkGpout0Ctrl[src]

impl Default for ClkGpout0Ctrl[src]

Auto Trait Implementations

impl Send for ClkGpout0Ctrl

impl Sync for ClkGpout0Ctrl

impl Unpin for ClkGpout0Ctrl

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.