pub enum Average {
NoAverage = 0,
Avg8 = 1,
Avg32 = 2,
Avg64 = 3,
}Expand description
Conversion averaging modes. Determines the number of conversion results that are collected and averaged before updating the temperature register. The average is an accumulated average and not a running average.
Variants§
NoAverage = 0
No averaging
Avg8 = 1
8 averaged conversions
Avg32 = 2
32 averaged conversions
Avg64 = 3
64 averaged conversions
Trait Implementations§
impl Copy for Average
impl Eq for Average
impl StructuralPartialEq for Average
Auto Trait Implementations§
impl Freeze for Average
impl RefUnwindSafe for Average
impl Send for Average
impl Sync for Average
impl Unpin for Average
impl UnwindSafe for Average
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