atsamd_hal::clock::v2::xosc

Struct Xosc

Source
pub struct Xosc<X, M>
where X: XoscId, M: Mode,
{ /* private fields */ }
Expand description

An external multipurpose crystal oscillator controller

An Xosc interfaces with either an external clock or external crystal oscillator and delivers the resulting clock to the rest of the clock system.

The type parameter X is a XoscId that determines which of the two instances this Xosc represents (Xosc0 or Xosc1). The type parameter M represents the operating Mode, either ClockMode or CrystalMode.

On its own, an instance of Xosc does not represent an enabled XOSC. Instead, it must first be wrapped with Enabled, which implements compile-time safety of the clock tree.

Because the terminal call to enable consumes the Xosc and returns an EnabledXosc, the remaining API uses the builder pattern, where each method takes and returns self by value, allowing them to be easily chained.

See the module-level documentation for an example of creating, configuring and using an Xosc.

Implementations§

Source§

impl<X: XoscId> Xosc<X, ClockMode>

Source

pub fn from_clock( token: XoscToken<X>, xin: impl Into<XIn<X>>, freq: impl Into<Hertz>, ) -> Self

Create an Xosc from an external clock, taking ownership of the XIn Pin

Creating a Xosc 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 EnabledXosc is returned. The Xosc is not active or useful until that point.

Source

pub fn free(self) -> (XoscToken<X>, XIn<X>)

Consume the Xosc and release the XoscToken and XIn Pin

Source§

impl<X: XoscId> Xosc<X, CrystalMode>

Source

pub fn from_crystal( token: XoscToken<X>, xin: impl Into<XIn<X>>, xout: impl Into<XOut<X>>, freq: impl Into<Hertz>, ) -> Self

Create an Xosc from an external crystal oscillator, taking ownership of the XIn and XOut Pins.

Creating a Xosc 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 EnabledXosc is returned. The Xosc is not active or useful until that point.

Source

pub fn free(self) -> (XoscToken<X>, XIn<X>, XOut<X>)

Consume the Xosc and release the XoscToken, XIn and XOut Pins

Source

pub fn current(self, current: CrystalCurrent) -> Self

Set the CrystalCurrent drive strength

Source

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

Toggle automatic loop control

If enabled, the hardware will automatically adjust the oscillator amplitude. In most cases, this will lower power consumption.

Source

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

Modify the oscillator amplitude when automatic loop control is enabled

The datasheet name for this setting is very misleading. When automatic loop control is enabled, setting the LOWBUFGAIN field to 1 will increase the oscillator amplitude by a factor of appoximately 2. This can help solve stability issues.

Source§

impl<X, M> Xosc<X, M>
where X: XoscId, M: Mode,

Source

pub fn freq(&self) -> Hertz

Return the clock or crystal frequency

Source

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

Set the start up delay before the Xosc is unmasked and continuously monitored

During the start up period, the Xosc 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 Xosc on-demand behavior

When the on-demand is enabled, the Xosc 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 Xosc behavior in Standby sleep mode

When RUNSTDBY is disabled, the Xosc will never run in Standby sleep mode unless ONDEMAND is enabled and the Xosc 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 the Xosc is not requested.

Source

pub fn enable(self) -> EnabledXosc<X, M>

Enable the Xosc, so that it can be used as a clock Source

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

The returned value is an EnabledXosc that can be used as a clock Source for other clocks.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<X, M> UnwindSafe for Xosc<X, M>
where <M as Mode>::Pins<X>: UnwindSafe, X: 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.