[][src]Struct mpu9250::InterruptConfig

pub struct InterruptConfig { /* fields omitted */ }

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

Implementations

impl InterruptConfig[src]

pub const ACL: InterruptConfig[src]

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

pub const OPEN: InterruptConfig[src]

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

pub const LATCH_INT_EN: InterruptConfig[src]

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

pub const INT_ANYRD_CLEAR: InterruptConfig[src]

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

pub const ACTL_FSYNC: InterruptConfig[src]

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[src]

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[src]

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 const fn empty() -> InterruptConfig[src]

Returns an empty set of flags

pub const fn all() -> InterruptConfig[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u8[src]

Returns the raw value of the flags currently stored.

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

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

pub const fn from_bits_truncate(bits: u8) -> InterruptConfig[src]

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

pub const unsafe fn from_bits_unchecked(bits: u8) -> InterruptConfig[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: InterruptConfig) -> bool[src]

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

pub const fn contains(&self, other: InterruptConfig) -> bool[src]

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Binary for InterruptConfig[src]

impl BitAnd<InterruptConfig> for InterruptConfig[src]

type Output = InterruptConfig

The resulting type after applying the & operator.

fn bitand(self, other: InterruptConfig) -> InterruptConfig[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<InterruptConfig> for InterruptConfig[src]

fn bitand_assign(&mut self, other: InterruptConfig)[src]

Disables all flags disabled in the set.

impl BitOr<InterruptConfig> for InterruptConfig[src]

type Output = InterruptConfig

The resulting type after applying the | operator.

fn bitor(self, other: InterruptConfig) -> InterruptConfig[src]

Returns the union of the two sets of flags.

impl BitOrAssign<InterruptConfig> for InterruptConfig[src]

fn bitor_assign(&mut self, other: InterruptConfig)[src]

Adds the set of flags.

impl BitXor<InterruptConfig> for InterruptConfig[src]

type Output = InterruptConfig

The resulting type after applying the ^ operator.

fn bitxor(self, other: InterruptConfig) -> InterruptConfig[src]

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

impl BitXorAssign<InterruptConfig> for InterruptConfig[src]

fn bitxor_assign(&mut self, other: InterruptConfig)[src]

Toggles the set of flags.

impl Clone for InterruptConfig[src]

impl Copy for InterruptConfig[src]

impl Debug for InterruptConfig[src]

impl Eq for InterruptConfig[src]

impl Extend<InterruptConfig> for InterruptConfig[src]

impl FromIterator<InterruptConfig> for InterruptConfig[src]

impl Hash for InterruptConfig[src]

impl LowerHex for InterruptConfig[src]

impl Not for InterruptConfig[src]

type Output = InterruptConfig

The resulting type after applying the ! operator.

fn not(self) -> InterruptConfig[src]

Returns the complement of this set of flags.

impl Octal for InterruptConfig[src]

impl Ord for InterruptConfig[src]

impl PartialEq<InterruptConfig> for InterruptConfig[src]

impl PartialOrd<InterruptConfig> for InterruptConfig[src]

impl StructuralEq for InterruptConfig[src]

impl StructuralPartialEq for InterruptConfig[src]

impl Sub<InterruptConfig> for InterruptConfig[src]

type Output = InterruptConfig

The resulting type after applying the - operator.

fn sub(self, other: InterruptConfig) -> InterruptConfig[src]

Returns the set difference of the two sets of flags.

impl SubAssign<InterruptConfig> for InterruptConfig[src]

fn sub_assign(&mut self, other: InterruptConfig)[src]

Disables all flags enabled in the set.

impl UpperHex for InterruptConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> 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.