#[repr(u8)]pub enum Startupselect {
Cycle2048 = 0,
Cycle4096 = 1,
Cycle16384 = 2,
Cycle32768 = 3,
Cycle65536 = 4,
Cycle131072 = 5,
Cycle262144 = 6,
}
Expand description
Oscillator Start-Up Time
Value on reset: 0
Variants§
Cycle2048 = 0
0: 62.6 ms
Cycle4096 = 1
1: 125 ms
Cycle16384 = 2
2: 500 ms
Cycle32768 = 3
3: 1000 ms
Cycle65536 = 4
4: 2000 ms
Cycle131072 = 5
5: 4000 ms
Cycle262144 = 6
6: 8000 ms
Trait Implementations§
Source§impl Clone for Startupselect
impl Clone for Startupselect
Source§fn clone(&self) -> Startupselect
fn clone(&self) -> Startupselect
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 Debug for Startupselect
impl Debug for Startupselect
Source§impl From<Startupselect> for u8
impl From<Startupselect> for u8
Source§fn from(variant: Startupselect) -> Self
fn from(variant: Startupselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Startupselect
impl PartialEq for Startupselect
impl Copy for Startupselect
impl Eq for Startupselect
impl IsEnum for Startupselect
impl StructuralPartialEq for Startupselect
Auto Trait Implementations§
impl Freeze for Startupselect
impl RefUnwindSafe for Startupselect
impl Send for Startupselect
impl Sync for Startupselect
impl Unpin for Startupselect
impl UnwindSafe for Startupselect
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