Enum stm32_hal2::i2c::NoiseFilter
source · 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 copy 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
source§fn eq(&self, other: &NoiseFilter) -> bool
fn eq(&self, other: &NoiseFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for NoiseFilter
impl StructuralPartialEq for NoiseFilter
Auto Trait Implementations§
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