Enum mpu9250::AccelDataRateConfig[][src]

pub enum AccelDataRateConfig {
    FChoice0,
    DlpfConf(Dlpf),
}

Controls the accelerometer data rate and bandwidth. Can be either set to FChoice, or to one of the 8 digital low pass filter modes. If the DLPF mode is used rate and bandwith can be further tweaked by Sample Rate Divisor. See page 13 of [Register map] for details. Noise Density for all values is 300 μg/rtHz. Default is dlpf with default dlpf mode.

Variants

ACCEL_FCHOICE 0: 3dB BW=1046Hz, delay=0.503ms, rate=4kHz.

FChoice set to 1 and data rate and bandwidth are controlled by Dlpf; rate = 1kHz.

Trait Implementations

impl Copy for AccelDataRateConfig
[src]

impl Clone for AccelDataRateConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AccelDataRateConfig
[src]

Formats the value using the given formatter. Read more

impl Default for AccelDataRateConfig
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations