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<NoiseFilter> for NoiseFilter
impl PartialEq<NoiseFilter> 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 ==
.