pub enum NoiseFilter {
Analog,
Digital(u8),
Disabled,
}
Expand description
Set the number of address bits to 7 or 10. Sets the CR1 register, ANFOFF and DNF fields.
Variants§
Analog
Analog noise filter enabled.
Digital(u8)
Digital filter enabled and filtering capability ( filters spikes with a length of) up to (value) t_I2CCLK
Disabled
Analog and digital filters disabled.
Trait Implementations§
Source§impl Clone for NoiseFilter
impl Clone for NoiseFilter
Source§fn clone(&self) -> NoiseFilter
fn clone(&self) -> NoiseFilter
Returns a duplicate 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 PartialEq for NoiseFilter
impl PartialEq for NoiseFilter
impl Copy for NoiseFilter
impl StructuralPartialEq for NoiseFilter
Auto Trait Implementations§
impl Freeze for NoiseFilter
impl RefUnwindSafe for NoiseFilter
impl Send for NoiseFilter
impl Sync for NoiseFilter
impl Unpin for NoiseFilter
impl UnwindSafe for NoiseFilter
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