Enum avr_device::atmega4809::adc0::ctrlc::PRESC_A
source · #[repr(u8)]pub enum PRESC_A {
DIV2 = 0,
DIV4 = 1,
DIV8 = 2,
DIV16 = 3,
DIV32 = 4,
DIV64 = 5,
DIV128 = 6,
DIV256 = 7,
}
Expand description
Clock Pre-scaler
Value on reset: 0
Variants§
DIV2 = 0
0: CLK_PER divided by 2
DIV4 = 1
1: CLK_PER divided by 4
DIV8 = 2
2: CLK_PER divided by 8
DIV16 = 3
3: CLK_PER divided by 16
DIV32 = 4
4: CLK_PER divided by 32
DIV64 = 5
5: CLK_PER divided by 64
DIV128 = 6
6: CLK_PER divided by 128
DIV256 = 7
7: CLK_PER divided by 256
Trait Implementations§
source§impl PartialEq for PRESC_A
impl PartialEq for PRESC_A
impl Copy for PRESC_A
impl Eq for PRESC_A
impl StructuralPartialEq for PRESC_A
Auto Trait Implementations§
impl RefUnwindSafe for PRESC_A
impl Send for PRESC_A
impl Sync for PRESC_A
impl Unpin for PRESC_A
impl UnwindSafe for PRESC_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