#[repr(u8)]pub enum StartUpDelay {
Delay63ms = 0,
Delay125ms = 1,
Delay500ms = 2,
Delay1s = 3,
Delay2s = 4,
Delay4s = 5,
Delay8s = 6,
}
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§
Trait Implementations§
Source§impl Clone for StartUpDelay
impl Clone for StartUpDelay
Source§fn clone(&self) -> StartUpDelay
fn clone(&self) -> StartUpDelay
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for StartUpDelay
impl Default for StartUpDelay
Source§fn default() -> StartUpDelay
fn default() -> StartUpDelay
Returns the “default value” for a type. Read more
Source§impl From<StartUpDelay> for Startupselect
impl From<StartUpDelay> for Startupselect
Source§fn from(delay: StartUpDelay) -> Self
fn from(delay: StartUpDelay) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StartUpDelay
impl PartialEq for StartUpDelay
impl Copy for StartUpDelay
impl Eq for StartUpDelay
impl StructuralPartialEq for StartUpDelay
Auto Trait Implementations§
impl Freeze for StartUpDelay
impl RefUnwindSafe for StartUpDelay
impl Send for StartUpDelay
impl Sync for StartUpDelay
impl Unpin for StartUpDelay
impl UnwindSafe for StartUpDelay
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more