#[repr(u8)]pub enum PRESCALER {
Div1 = 0,
Div2 = 1,
Div4 = 2,
Div6 = 3,
Div8 = 4,
Div10 = 5,
Div12 = 6,
Div16 = 7,
Div32 = 8,
Div64 = 9,
Div128 = 10,
Div256 = 11,
}
Expand description
PRESCALER
Value on reset: 0
Variants§
Div1 = 0
0: Input clock divided by 1
Div2 = 1
1: Input clock divided by 2
Div4 = 2
2: Input clock divided by 4
Div6 = 3
3: Input clock divided by 6
Div8 = 4
4: Input clock divided by 8
Div10 = 5
5: Input clock divided by 10
Div12 = 6
6: Input clock divided by 12
Div16 = 7
7: Input clock divided by 16
Div32 = 8
8: Input clock divided by 32
Div64 = 9
9: Input clock divided by 64
Div128 = 10
10: Input clock divided by 128
Div256 = 11
11: Input clock divided by 256
Trait Implementations§
impl Copy for PRESCALER
impl Eq for PRESCALER
impl IsEnum for PRESCALER
impl StructuralPartialEq for PRESCALER
Auto Trait Implementations§
impl Freeze for PRESCALER
impl RefUnwindSafe for PRESCALER
impl Send for PRESCALER
impl Sync for PRESCALER
impl Unpin for PRESCALER
impl UnwindSafe for PRESCALER
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