[][src]Enum mpu9250::Dlpf

pub enum Dlpf {
    _0,
    _1,
    _2,
    _3,
    _4,
    _5,
    _6,
    _7,
}

Digital low pass filter configuration; default: _0;

Variants

_0

Accelerometer: bandwitdh=218.Hz, delay=1.88ms; Gyroscope: bandwidth=250Hz, delay=0.97ms, Fs=8kHz; Temperature sensor: bandwidth=4000 Hz, delay=0.04ms.

_1

Accelerometer: bandwidth=218.1Hz, delay=1.88ms; Gyroscope: bandwidth=184Hz, delay=2.9ms, Fs=1kHz; Temperature sensor: bandwidth=188Hz delay=1.9ms.

_2

Accelerometer: bandwidth=99Hz, delay=2.88ms; Gyroscope: bandwidth=92Hz, delay=3.9ms, Fs=1kHz; Temperature sensor: bandwidth=92Hz, delay=2.8ms.

_3

Accelerometer bandwidth=44.8Hz, delay=4.88ms; Gyroscope: bandwidth=41Hz, delay=5.9ms, Fs=1kHz; Temperature sensor: bandwidth=42Hz, delay=4.8ms.

_4

Accelerometer: bandwidth=21.2Hz, delay=8.87ms; Gyroscope: bandwidth=20Hz, delay=9.9ms, Fs=1kHz; Temperature sensor: bandwidth=20Hz, delay=8.3ms.

_5

Accelerometer: bandwidth=10.2Hz, delay=16.83ms; Gyroscope: bandwidth=10Hz, delay=17.85ms, Fs=1kHz; Temperature sensor: bandwidth=10Hz, delay=13.4ms.

_6

Accelerometer: bandwidth=5.05Hz, delay=32.48ms; Gyroscope: bandwidth=5Hz, delay=33.48ms, Fs=1kHz; Temperature sensor: bandwidth=5Hz, delay=18.6ms.

_7

Accelerometer: bandwidth=420Hz, delay=1.38ms; Gyroscope: bandwidth=3600Hz, delay=0.17ms, Fs=8kHz; Temperature sensor: bandwidth=4000Hz, delay=0.04ms.

Trait Implementations

impl Clone for Dlpf[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Dlpf[src]

impl Copy for Dlpf[src]

impl Default for Dlpf[src]

Auto Trait Implementations

impl Send for Dlpf

impl Sync for Dlpf

Blanket Implementations

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,