Enum atsamd_hal::clock::v2::xosc32k::StartUpDelay
source · [−]#[repr(u8)]
pub enum StartUpDelay {
Delay63ms,
Delay125ms,
Delay500ms,
Delay1s,
Delay2s,
Delay4s,
Delay8s,
}
Expand description
Start up delay before continuous monitoring takes effect
After a hard reset or waking from sleep, the XOSC32K 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.
Variants
Delay63ms
Delay125ms
Delay500ms
Delay1s
Delay2s
Delay4s
Delay8s
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 From<StartUpDelay> for STARTUP_A
impl From<StartUpDelay> for STARTUP_A
sourcefn from(delay: StartUpDelay) -> Self
fn from(delay: StartUpDelay) -> Self
Converts to this type from the input type.
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