atsamd_hal::clock::v2::xosc32k

Struct Xosc32kBase

Source
pub struct Xosc32kBase<M: Mode> { /* private fields */ }
Expand description

XOSC32K base clock, which feeds the Xosc1k and Xosc32k clocks

The XOSC32K peripheral has two possible clock outputs, one at 32 kHz and another at 1 kHz. This structure is represented in the type system as a set of three clocks forming a small clock tree. The Xosc32kBase clock represents the configurable base oscillator that feeds the optional Xosc1k and Xosc32k output clocks. See the module-level documentation for details and examples.

Implementations§

Source§

impl Xosc32kBase<ClockMode>

Source

pub fn from_clock(token: Xosc32kBaseToken, xin32: impl Into<XIn32>) -> Self

Create the Xosc32kBase clock from an external clock, taking ownership of the XIn32 Pin

Creating an Xosc32kBase clock does not modify any of the hardware registers. It only creates a struct to track the configuration. The configuration data is stored until the user calls enable. At that point, all of the registers are written according to the initialization procedures specified in the datasheet, and an EnabledXosc32kBase clock is returned. The Xosc32kBase clock is not active or useful until that point.

Source

pub fn free(self) -> (Xosc32kBaseToken, XIn32)

Consume the Xosc32kBase and release the Xosc32kBaseToken and XIn32 Pin

Source§

impl Xosc32kBase<CrystalMode>

Source

pub fn from_crystal( token: Xosc32kBaseToken, xin32: impl Into<XIn32>, xout32: impl Into<XOut32>, ) -> Self

Create the Xosc32kBase clock from an external crystal oscillator, taking ownership of the XIn32 and XOut32 Pins.

Creating an Xosc32kBase clock does not modify any of the hardware registers. It only creates a struct to track the configuration. The configuration data is stored until the user calls enable. At that point, all of the registers are written according to the initialization procedures specified in the datasheet, and an EnabledXosc32kBase clock is returned. The Xosc32kBase is not active or useful until that point.

Source

pub fn free(self) -> (Xosc32kBaseToken, XIn32, XOut32)

Consume the Xosc32kBase and release the Xosc32kBaseToken, XIn32 and XOut32 Pins

Source

pub fn control_gain_mode(self, cgm: ControlGainMode) -> Self

Set the crystal oscillator ControlGainMode

Source§

impl<M: Mode> Xosc32kBase<M>

Source

pub fn start_up_delay(self, delay: StartUpDelay) -> Self

Set the start up delay before the Xosc32kBase clock is unmasked and continuously monitored

During the start up period, the Xosc32kBase clock is masked to prevent clock instability from propagating to the digital logic. During this time, clock failure detection is disabled.

Source

pub fn on_demand(self, on_demand: bool) -> Self

Control the XOSC32K on-demand behavior

When the on-demand is enabled, the XOSC32K clocks will only run in Idle or Standby sleep modes if it is requested by a peripheral. Otherwise, its behavior is dependent on the run-standby setting.

Source

pub fn run_standby(self, run_standby: bool) -> Self

Control the XOSC32K behavior in Standby sleep mode

When RUNSTDBY is disabled, the XOSC32K clocks will never run in Standby sleep mode unless ONDEMAND is enabled and a clock is requested by a peripheral.

When RUNSTDBY is enabled, the Xosc will run in Standby sleep mode, but it can still be disabled if ONDEMAND is enabled and a clock is not requested.

Source

pub fn write_lock(self)

Freeze the XOSC32K configuration until power-on reset

This function sets the write-lock bit, which freezes the XOSC32K configuration at the hardware level until power-on reset. At the API level, it also consumes and drops the Xosc32kBase, which prevents any further modifications.

NOTE: Because the Xosc32kBase is not yet enabled, calling this method will lock both the Xosc1k and Xosc32k in their disabled state.

Source

pub fn enable(self) -> EnabledXosc32kBase<M>

Enable the Xosc32kBase clock, so that it can be used as a clock Source for the Xosc1k and Xosc32k clocks

As mentioned when creating a new Xosc32kBase, no hardware registers are actually modified until this call. Rather, the desired configuration is stored internally, and the Xosc32kBase is initialized and configured here according to the datasheet.

The returned value is an EnabledXosc32kBase that can be used as a clock Source for the Xosc1k and Xosc32k clocks.

Auto Trait Implementations§

§

impl<M> Freeze for Xosc32kBase<M>
where <M as Mode>::Pins: Freeze,

§

impl<M> RefUnwindSafe for Xosc32kBase<M>
where <M as Mode>::Pins: RefUnwindSafe,

§

impl<M> Send for Xosc32kBase<M>
where <M as Mode>::Pins: Send,

§

impl<M> Sync for Xosc32kBase<M>
where <M as Mode>::Pins: Sync,

§

impl<M> Unpin for Xosc32kBase<M>
where <M as Mode>::Pins: Unpin,

§

impl<M> UnwindSafe for Xosc32kBase<M>
where <M as Mode>::Pins: UnwindSafe,

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.