#[repr(u8)]pub enum Startupselect {
Show 16 variants
Cycle1 = 0,
Cycle2 = 1,
Cycle4 = 2,
Cycle8 = 3,
Cycle16 = 4,
Cycle32 = 5,
Cycle64 = 6,
Cycle128 = 7,
Cycle256 = 8,
Cycle512 = 9,
Cycle1024 = 10,
Cycle2048 = 11,
Cycle4096 = 12,
Cycle8192 = 13,
Cycle16384 = 14,
Cycle32768 = 15,
}
Expand description
Start-Up Time
Value on reset: 0
Variants§
Cycle1 = 0
0: 31 us
Cycle2 = 1
1: 61 us
Cycle4 = 2
2: 122 us
Cycle8 = 3
3: 244 us
Cycle16 = 4
4: 488 us
Cycle32 = 5
5: 977 us
Cycle64 = 6
6: 1953 us
Cycle128 = 7
7: 3906 us
Cycle256 = 8
8: 7813 us
Cycle512 = 9
9: 15625 us
Cycle1024 = 10
10: 31250 us
Cycle2048 = 11
11: 62500 us
Cycle4096 = 12
12: 125000 us
Cycle8192 = 13
13: 250000 us
Cycle16384 = 14
14: 500000 us
Cycle32768 = 15
15: 1000000 us
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