Enum atsamd_hal::clock::v2::xosc::StartUpDelay
source · [−]#[repr(u8)]
pub enum StartUpDelay {
Show 16 variants
Delay31us,
Delay62us,
Delay122us,
Delay244us,
Delay488us,
Delay977us,
Delay2ms,
Delay4ms,
Delay8ms,
Delay16ms,
Delay31ms,
Delay63ms,
Delay125ms,
Delay250ms,
Delay500ms,
Delay1s,
}
Expand description
Start up delay before continuous Xosc
monitoring takes effect
After a hard reset or waking from sleep, the Xosc
output will remained
masked for the start up period, to ensure an unstable clock is not
propagated into the digital logic.
The start up delay is counted using the OscUlp32k
clock, and the delay
is equal to 2^N clock cycles, where N is selectable in the range 0..16
.
Variants
Delay31us
Delay62us
Delay122us
Delay244us
Delay488us
Delay977us
Delay2ms
Delay4ms
Delay8ms
Delay16ms
Delay31ms
Delay63ms
Delay125ms
Delay250ms
Delay500ms
Delay1s
Trait Implementations
sourceimpl Clone for StartUpDelay
impl Clone for StartUpDelay
sourcefn clone(&self) -> StartUpDelay
fn clone(&self) -> StartUpDelay
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Default for StartUpDelay
impl Default for StartUpDelay
sourcefn default() -> StartUpDelay
fn default() -> StartUpDelay
Returns the “default value” for a type. Read more
sourceimpl PartialEq<StartUpDelay> for StartUpDelay
impl PartialEq<StartUpDelay> for StartUpDelay
sourcefn eq(&self, other: &StartUpDelay) -> bool
fn eq(&self, other: &StartUpDelay) -> bool
impl Copy for StartUpDelay
impl Eq for StartUpDelay
impl StructuralEq for StartUpDelay
impl StructuralPartialEq for StartUpDelay
Auto Trait Implementations
impl RefUnwindSafe for StartUpDelay
impl Send for StartUpDelay
impl Sync for StartUpDelay
impl Unpin for StartUpDelay
impl UnwindSafe for StartUpDelay
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more