#[repr(u8)]pub enum CS1_A {
Show 16 variants
NO_CLOCK = 0,
DIRECT = 1,
PRESCALE_2 = 2,
PRESCALE_4 = 3,
PRESCALE_8 = 4,
PRESCALE_16 = 5,
PRESCALE_32 = 6,
PRESCALE_64 = 7,
PRESCALE_128 = 8,
PRESCALE_256 = 9,
PRESCALE_512 = 10,
PRESCALE_1024 = 11,
PRESCALE_2048 = 12,
PRESCALE_4096 = 13,
PRESCALE_8192 = 14,
PRESCALE_16384 = 15,
}
Expand description
Clock Select Bits
Value on reset: 0
Variants§
NO_CLOCK = 0
0: No clock source (Timer/Counter stopped)
DIRECT = 1
1: Running, No Prescaling
PRESCALE_2 = 2
2: Running, CLK/2
PRESCALE_4 = 3
3: Running, CLK/4
PRESCALE_8 = 4
4: Running, CLK/8
PRESCALE_16 = 5
5: Running, CLK/16
PRESCALE_32 = 6
6: Running, CLK/32
PRESCALE_64 = 7
7: Running, CLK/64
PRESCALE_128 = 8
8: Running, CLK/128
PRESCALE_256 = 9
9: Running, CLK/256
PRESCALE_512 = 10
10: Running, CLK/512
PRESCALE_1024 = 11
11: Running, CLK/1024
PRESCALE_2048 = 12
12: Running, CLK/2048
PRESCALE_4096 = 13
13: Running, CLK/4096
PRESCALE_8192 = 14
14: Running, CLK/8192
PRESCALE_16384 = 15
15: Running, CLK/16384
Trait Implementations§
source§impl PartialEq for CS1_A
impl PartialEq for CS1_A
impl Copy for CS1_A
impl Eq for CS1_A
impl StructuralPartialEq for CS1_A
Auto Trait Implementations§
impl Freeze for CS1_A
impl RefUnwindSafe for CS1_A
impl Send for CS1_A
impl Sync for CS1_A
impl Unpin for CS1_A
impl UnwindSafe for CS1_A
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