[]Struct mpu9250::InterruptConfig

pub struct InterruptConfig { /* fields omitted */ }

Interrupt configuration Defaults: active high, push-pull, 50 us pulse, cleared only by reading INT_STATUS

Methods

impl InterruptConfig

pub const ACL: InterruptConfig

Sets logic level for INT pin is active low (high if not set)

pub const OPEN: InterruptConfig

INT pin is configured as open drain (push pull if not set)

pub const LATCH_INT_EN: InterruptConfig

INT pin level held untilinterrupt status is cleared (cleared within 50us if not set)

pub const INT_ANYRD_CLEAR: InterruptConfig

Interrupt status is cleared if any read operation is performed (cleared only by reading INT_STATUS if not set)

pub const ACTL_FSYNC: InterruptConfig

The logic level for the FSYNC pin as an interrupt is active low (active high if not set)

pub const FSYNC_INT_MODE_EN: InterruptConfig

This enables the FSYNC pin to be used as an interrupt. A transition to the active level described by the ACTL_FSYNC bit will cause an interrupt. The status of the interrupt is read in the I2C Master Status register PASS_THROUGH bit (disabled if not set)

pub const BYPASS_EN: InterruptConfig

When asserted, the i2c_master interface pins(ES_CL and ES_DA) will go into ‘bypass mode’ when the i2c master interface is disabled. The pins will float high due to the internal pull-up if not enabled and the i2c master interface is disabled

pub fn empty() -> InterruptConfig

Returns an empty set of flags.

pub fn all() -> InterruptConfig

Returns the set containing all flags.

pub fn bits(&self) -> u8

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<InterruptConfig>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub fn from_bits_truncate(bits: u8) -> InterruptConfig

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub fn intersects(&self, other: InterruptConfig) -> bool

Returns true if there are flags common to both self and other.

pub fn contains(&self, other: InterruptConfig) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: InterruptConfig)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: InterruptConfig)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: InterruptConfig)

Toggles the specified flags in-place.

pub fn set(&mut self, other: InterruptConfig, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl PartialEq<InterruptConfig> for InterruptConfig

impl Eq for InterruptConfig

impl Ord for InterruptConfig

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl PartialOrd<InterruptConfig> for InterruptConfig

impl Hash for InterruptConfig

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Sub<InterruptConfig> for InterruptConfig

type Output = InterruptConfig

The resulting type after applying the - operator.

fn sub(self, other: InterruptConfig) -> InterruptConfig

Returns the set difference of the two sets of flags.

impl SubAssign<InterruptConfig> for InterruptConfig

fn sub_assign(&mut self, other: InterruptConfig)

Disables all flags enabled in the set.

impl Not for InterruptConfig

type Output = InterruptConfig

The resulting type after applying the ! operator.

fn not(self) -> InterruptConfig

Returns the complement of this set of flags.

impl BitAnd<InterruptConfig> for InterruptConfig

type Output = InterruptConfig

The resulting type after applying the & operator.

fn bitand(self, other: InterruptConfig) -> InterruptConfig

Returns the intersection between the two sets of flags.

impl BitOr<InterruptConfig> for InterruptConfig

type Output = InterruptConfig

The resulting type after applying the | operator.

fn bitor(self, other: InterruptConfig) -> InterruptConfig

Returns the union of the two sets of flags.

impl BitXor<InterruptConfig> for InterruptConfig

type Output = InterruptConfig

The resulting type after applying the ^ operator.

fn bitxor(self, other: InterruptConfig) -> InterruptConfig

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<InterruptConfig> for InterruptConfig

fn bitand_assign(&mut self, other: InterruptConfig)

Disables all flags disabled in the set.

impl BitOrAssign<InterruptConfig> for InterruptConfig

fn bitor_assign(&mut self, other: InterruptConfig)

Adds the set of flags.

impl BitXorAssign<InterruptConfig> for InterruptConfig

fn bitxor_assign(&mut self, other: InterruptConfig)

Toggles the set of flags.

impl Debug for InterruptConfig

impl FromIterator<InterruptConfig> for InterruptConfig

impl Octal for InterruptConfig

impl Binary for InterruptConfig

impl LowerHex for InterruptConfig

impl UpperHex for InterruptConfig

impl Copy for InterruptConfig

impl Extend<InterruptConfig> for InterruptConfig

impl Clone for InterruptConfig

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> From<T> for T[src]

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 

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