Enum mpu9250::Dlpf

source ·
pub enum Dlpf {
    _0,
    _1,
    _2,
    _3,
    _4,
    _5,
    _6,
    _7,
}
Expand description

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§

source§

impl Clone for Dlpf

source§

fn clone(&self) -> Dlpf

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Dlpf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Dlpf

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for Dlpf

Auto Trait Implementations§

§

impl RefUnwindSafe for Dlpf

§

impl Send for Dlpf

§

impl Sync for Dlpf

§

impl Unpin for Dlpf

§

impl UnwindSafe for Dlpf

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.