atsamd_hal::clock::v2

Struct Clocks

Source
pub struct Clocks {
    pub pac: Pac,
    pub ahbs: AhbClks,
    pub apbs: ApbClks,
    pub gclk0: Enabled<Gclk0<DfllId>, U1>,
    pub dfll: Enabled<Dfll, U1>,
    pub osculp32k_base: Enabled<OscUlp32kBase>,
}
Expand description

Enabled clocks at power-on reset

This type is constructed using the clock_system_at_reset function, which consumes the PAC-level clocking structs and returns the HAL-level clocking structs in their reset state.

This type represents the clocks as they are configured at power-on reset. The main clock, Gclk0, runs at 48 MHz using the Dfll in open-loop mode. The ultra-low power base oscillator is also enabled and running, as it can never be disabled.

As described in the top-level documentation for the clock module, only Enabled clocks can be used as a Source for downstream clocks. This struct contains all of the Enabled clocks at reset.

This struct also contains the Pac wrapper struct, which provides unsafe access to the low-level PAC structs.

Fields§

§pac: Pac

Wrapper providing unsafe access to low-level PAC structs

§ahbs: AhbClks

Enabled AHB clocks

§apbs: ApbClks

Enabled APB clocks

§gclk0: Enabled<Gclk0<DfllId>, U1>

Main system clock, driven at 48 MHz by the DFLL in open loop mode

§dfll: Enabled<Dfll, U1>

DFLL48 in open loop mode

§osculp32k_base: Enabled<OscUlp32kBase>

Always-enabled base oscillator for the OscUlp1k and OscUlp32k clocks.

Auto Trait Implementations§

§

impl Freeze for Clocks

§

impl RefUnwindSafe for Clocks

§

impl Send for Clocks

§

impl !Sync for Clocks

§

impl Unpin for Clocks

§

impl UnwindSafe for Clocks

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.