atsamd_hal::clock::v2

Struct Tokens

Source
pub struct Tokens {
    pub apbs: ApbTokens,
    pub dpll0: DpllToken<Dpll0Id>,
    pub dpll1: DpllToken<Dpll1Id>,
    pub gclks: GclkTokens,
    pub pclks: PclkTokens,
    pub rtcosc: RtcOscToken,
    pub xosc0: XoscToken<Xosc0Id>,
    pub xosc1: XoscToken<Xosc1Id>,
    pub xosc32k: Xosc32kTokens,
    pub osculp32k: OscUlp32kTokens,
}
Expand description

Type-level tokens for unused 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.

As described in the top-level documentation for the clock module, token types are used to guanrantee the uniqueness of each clock. To configure or enable a clock, you must provide the corresponding token.

Fields§

§apbs: ApbTokens

Tokens to create apb::ApbClks

§dpll0: DpllToken<Dpll0Id>

Token to create dpll::Dpll0

§dpll1: DpllToken<Dpll1Id>

Token to create dpll::Dpll1

§gclks: GclkTokens

Tokens to create gclk::Gclk

§pclks: PclkTokens

Tokens to create pclk::Pclks

§rtcosc: RtcOscToken

Tokens to create rtcosc::RtcOsc

§xosc0: XoscToken<Xosc0Id>

Tokens xosc::Xosc0

§xosc1: XoscToken<Xosc1Id>

Token to create xosc::Xosc1

§xosc32k: Xosc32kTokens§osculp32k: OscUlp32kTokens

Auto Trait Implementations§

§

impl Freeze for Tokens

§

impl RefUnwindSafe for Tokens

§

impl Send for Tokens

§

impl !Sync for Tokens

§

impl Unpin for Tokens

§

impl UnwindSafe for Tokens

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.