Enum stm32_hal2::dfsdm::Continuous
source · pub enum Continuous {
OneShot,
Continuous,
ContinuousFastMode,
}
Expand description
Set conversions to regular, continous, or contiuous fast mode. Sets FLTxCR1 register, RCONT and FAST fields.
Variants§
OneShot
The regular channel is converted just once for each conversion request
Continuous
The regular channel is converted repeatedly after each conversion request
ContinuousFastMode
Fast conversion mode enabled. When converting a regular conversion in continuous mode, having enabled the fast mode causes each conversion (except the first) to execute faster than in standard mode. This bit has no effect on conversions which are not continuous.
Trait Implementations§
source§impl Clone for Continuous
impl Clone for Continuous
source§fn clone(&self) -> Continuous
fn clone(&self) -> Continuous
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<Continuous> for Continuous
impl PartialEq<Continuous> for Continuous
source§fn eq(&self, other: &Continuous) -> bool
fn eq(&self, other: &Continuous) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.