Struct I2c

Source
pub struct I2c<I> { /* private fields */ }
Expand description

A safe wrapper around an I2C device.

Implementations§

Source§

impl I2c<File>

Source

pub fn from_path<P: AsRef<Path>>(p: P) -> Result<Self>

Open an I2C device

Source§

impl<I> I2c<I>

Source

pub fn new(device: I) -> Self

Creates a new I2C handle with the given file descriptor

Source

pub fn into_inner(self) -> I

Consumes the I2C handle to return the inner file descriptor.

Source

pub fn inner_ref(&self) -> &I

Borrows the inner file descriptor.

Source

pub fn inner_mut(&mut self) -> &mut I

Mutably borrows the inner file descriptor.

Source§

impl<I: AsRawFd> I2c<I>

Source

pub fn i2c_set_retries(&self, value: usize) -> Result<()>

Sets the number of times to retry communication before failing.

Source

pub fn i2c_set_timeout(&self, duration: Duration) -> Result<()>

Sets a timeout for I2C operations

Source

pub fn smbus_set_slave_address( &mut self, address: u16, tenbit: bool, ) -> Result<()>

Set the slave address to communicate with.

Source

pub fn smbus_set_pec(&self, pec: bool) -> Result<()>

Enable or disable SMBus Packet Error Checking.

Source

pub fn i2c_functionality(&self) -> Result<Functionality>

Retrieve the capabilities of the I2C device. These should be checked before attempting to use certain SMBus commands or I2C flags.

Source

pub fn i2c_transfer_flags(&self) -> Result<(ReadFlags, WriteFlags)>

i2c_transfer capabilities of the I2C device. These should be checked before attempting to use any of the protocol mangling flags.

Source

pub fn i2c_transfer(&mut self, messages: &mut [Message<'_>]) -> Result<()>

Executes a queue of I2C transfers, separated by repeat START conditions. Data buffers are truncated to the actual read length on completion.

See the I2C_RDWR ioctl for more information.

Source

pub fn smbus_write_quick(&mut self, value: ReadWrite) -> Result<()>

Sends a single bit to the device, in the place of the Rd/Wr address bit.

Source

pub fn smbus_read_byte(&mut self) -> Result<u8>

Reads a single byte from a device without specifying a register.

Some devices are so simple that this interface is enough; for others, it is a shorthand if you want to read the same register as in the previous SMBus command.

Source

pub fn smbus_write_byte(&mut self, value: u8) -> Result<()>

Sends a single byte to a device.

Source

pub fn smbus_read_byte_data(&mut self, command: u8) -> Result<u8>

Reads a single byte from a device from the designated register.

Source

pub fn smbus_write_byte_data(&mut self, command: u8, value: u8) -> Result<()>

Writes a single byte to a device to the designated register.

Source

pub fn smbus_read_word_data(&mut self, command: u8) -> Result<u16>

Reads a 16-bit word from the device register.

Source

pub fn smbus_write_word_data(&mut self, command: u8, value: u16) -> Result<()>

Writes a 16-bit word to the device register.

Source

pub fn smbus_process_call(&mut self, command: u8, value: u16) -> Result<u16>

Selects a device register, sends a 16-bit word to it, and read 16-bits of data in return.

Source

pub fn smbus_read_block_data( &mut self, command: u8, value: &mut [u8], ) -> Result<usize>

Read up to 32 bytes from the designated device register.

Returns the amount of data read.

Source

pub fn smbus_write_block_data( &mut self, command: u8, value: &[u8], ) -> Result<()>

Write up to 32 bytes to the designated device register.

Source

pub fn smbus_block_process_call( &mut self, command: u8, write: &[u8], read: &mut [u8], ) -> Result<usize>

Sends up to 31 bytes of data to the designated device register, and reads up to 31 bytes in return.

This was introduced in SMBus 2.0

Source

pub fn i2c_read_block_data( &mut self, command: u8, value: &mut [u8], ) -> Result<usize>

Reads a block of bytes from the designated device register.

Unlike smbus_read_block_data this does not receive a data length. This is limited to 32 bytes due to the use of the Linux SMBus interface. Use i2c_transfer() if more data is needed. write()+read() may also be an option, though will produce an I2C STOP condition between the transfers, which may be undesirable.

Source

pub fn i2c_write_block_data(&mut self, command: u8, value: &[u8]) -> Result<()>

Writes a block of bytes from the designated device register.

Unlike smbus_write_block_data this does not transfer the data length. This is limited to 32 bytes due to the use of the Linux SMBus interface. Use i2c_transfer() or write() instead if more data is needed.

Trait Implementations§

Source§

impl<I: AsRawFd> Address for I2c<I>

Source§

fn set_slave_address( &mut self, addr: u16, tenbit: bool, ) -> Result<(), Self::Error>

Sets the current slave to address. Read more
Source§

impl<I: AsRawFd> AsRawFd for I2c<I>

Source§

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
Source§

impl<I: AsRawFd> BlockTransfer for I2c<I>

Source§

fn i2c_read_block_data( &mut self, command: u8, value: &mut [u8], ) -> Result<usize, Self::Error>

Reads a block of bytes from the designated device register. Read more
Source§

fn i2c_write_block_data( &mut self, command: u8, value: &[u8], ) -> Result<(), Self::Error>

Writes a block of bytes to the designated device register. Read more
Source§

impl<I: AsRawFd> BulkTransfer for I2c<I>

Source§

fn i2c_transfer_support( &mut self, ) -> Result<(ReadFlags, WriteFlags), Self::Error>

Specifies the flags that this implementation supports.
Source§

fn i2c_transfer( &mut self, messages: &mut [Message<'_>], ) -> Result<(), Self::Error>

Executes a queue of I2C transfers, separated by repeated START conditions. Data buffers are truncated to the actual read length on completion.
Source§

impl FromRawFd for I2c<File>

Source§

unsafe fn from_raw_fd(fd: RawFd) -> Self

Constructs a new instance of Self from the given raw file descriptor. Read more
Source§

impl<I: IntoRawFd> IntoRawFd for I2c<I>

Source§

fn into_raw_fd(self) -> RawFd

Consumes this object, returning the raw underlying file descriptor. Read more
Source§

impl<I: AsRawFd> Master for I2c<I>

Source§

type Error = Error

The error type returned by I2C operations.
Source§

impl<I: Read> Read for I2c<I>

Source§

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
1.36.0 · Source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>

Like read, except that it reads into a slice of buffers. Read more
Source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · Source§

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Reads all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · Source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Reads all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · Source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Reads the exact number of bytes required to fill buf. Read more
Source§

fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
Source§

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Reads the exact number of bytes required to fill cursor. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · Source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · Source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · Source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
Source§

impl<I: AsRawFd> Smbus for I2c<I>

Source§

fn smbus_write_quick(&mut self, value: bool) -> Result<(), Self::Error>

Sends a single bit to the device, in the place of the rd/wr address bit.
Source§

fn smbus_read_byte(&mut self) -> Result<u8, Self::Error>

Reads a single byte from a device without specifying a register.
Source§

fn smbus_write_byte(&mut self, value: u8) -> Result<(), Self::Error>

Sends a single byte to the device
Source§

fn smbus_read_byte_data(&mut self, command: u8) -> Result<u8, Self::Error>

Reads a byte from the designated register.
Source§

fn smbus_write_byte_data( &mut self, command: u8, value: u8, ) -> Result<(), Self::Error>

Writes a byte to the designated register.
Source§

fn smbus_read_word_data(&mut self, command: u8) -> Result<u16, Self::Error>

Reads a 16-bit word from the designated register.
Source§

fn smbus_write_word_data( &mut self, command: u8, value: u16, ) -> Result<(), Self::Error>

Writes a 16-bit word to the designated register.
Source§

fn smbus_process_call( &mut self, command: u8, value: u16, ) -> Result<u16, Self::Error>

Writes a 16-bit word to the specified register, then reads a 16-bit word in response.
Source§

fn smbus_read_block_data( &mut self, command: u8, value: &mut [u8], ) -> Result<usize, Self::Error>

Reads up to 32 bytes from the designated device register. Read more
Source§

fn smbus_write_block_data( &mut self, command: u8, value: &[u8], ) -> Result<(), Self::Error>

Writes up to 32 bytes to the designated device register.
Source§

impl<I: AsRawFd> Smbus20 for I2c<I>

Source§

fn smbus_process_call_block( &mut self, command: u8, write: &[u8], read: &mut [u8], ) -> Result<usize, Self::Error>

Sends up to 31 bytes of data to the designated register, and reads up to 31 bytes in return. Read more
Source§

impl<I: AsRawFd> SmbusPec for I2c<I>

Source§

fn smbus_set_pec(&mut self, pec: bool) -> Result<(), Self::Error>

Enables or disables SMBus Packet Error Checking
Source§

impl<I: Write> Write for I2c<I>

Source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Writes a buffer into this writer, returning how many bytes were written. Read more
Source§

fn flush(&mut self) -> Result<()>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · Source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · Source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
Source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · Source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations§

§

impl<I> Freeze for I2c<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for I2c<I>
where I: RefUnwindSafe,

§

impl<I> Send for I2c<I>
where I: Send,

§

impl<I> Sync for I2c<I>
where I: Sync,

§

impl<I> Unpin for I2c<I>
where I: Unpin,

§

impl<I> UnwindSafe for I2c<I>
where I: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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<R> ReadBytesExt for R
where R: Read + ?Sized,

Source§

fn read_u8(&mut self) -> Result<u8, Error>

Reads an unsigned 8 bit integer from the underlying reader. Read more
Source§

fn read_i8(&mut self) -> Result<i8, Error>

Reads a signed 8 bit integer from the underlying reader. Read more
Source§

fn read_u16<T>(&mut self) -> Result<u16, Error>
where T: ByteOrder,

Reads an unsigned 16 bit integer from the underlying reader. Read more
Source§

fn read_i16<T>(&mut self) -> Result<i16, Error>
where T: ByteOrder,

Reads a signed 16 bit integer from the underlying reader. Read more
Source§

fn read_u24<T>(&mut self) -> Result<u32, Error>
where T: ByteOrder,

Reads an unsigned 24 bit integer from the underlying reader. Read more
Source§

fn read_i24<T>(&mut self) -> Result<i32, Error>
where T: ByteOrder,

Reads a signed 24 bit integer from the underlying reader. Read more
Source§

fn read_u32<T>(&mut self) -> Result<u32, Error>
where T: ByteOrder,

Reads an unsigned 32 bit integer from the underlying reader. Read more
Source§

fn read_i32<T>(&mut self) -> Result<i32, Error>
where T: ByteOrder,

Reads a signed 32 bit integer from the underlying reader. Read more
Source§

fn read_u48<T>(&mut self) -> Result<u64, Error>
where T: ByteOrder,

Reads an unsigned 48 bit integer from the underlying reader. Read more
Source§

fn read_i48<T>(&mut self) -> Result<i64, Error>
where T: ByteOrder,

Reads a signed 48 bit integer from the underlying reader. Read more
Source§

fn read_u64<T>(&mut self) -> Result<u64, Error>
where T: ByteOrder,

Reads an unsigned 64 bit integer from the underlying reader. Read more
Source§

fn read_i64<T>(&mut self) -> Result<i64, Error>
where T: ByteOrder,

Reads a signed 64 bit integer from the underlying reader. Read more
Source§

fn read_u128<T>(&mut self) -> Result<u128, Error>
where T: ByteOrder,

Reads an unsigned 128 bit integer from the underlying reader. Read more
Source§

fn read_i128<T>(&mut self) -> Result<i128, Error>
where T: ByteOrder,

Reads a signed 128 bit integer from the underlying reader. Read more
Source§

fn read_uint<T>(&mut self, nbytes: usize) -> Result<u64, Error>
where T: ByteOrder,

Reads an unsigned n-bytes integer from the underlying reader. Read more
Source§

fn read_int<T>(&mut self, nbytes: usize) -> Result<i64, Error>
where T: ByteOrder,

Reads a signed n-bytes integer from the underlying reader. Read more
Source§

fn read_uint128<T>(&mut self, nbytes: usize) -> Result<u128, Error>
where T: ByteOrder,

Reads an unsigned n-bytes integer from the underlying reader.
Source§

fn read_int128<T>(&mut self, nbytes: usize) -> Result<i128, Error>
where T: ByteOrder,

Reads a signed n-bytes integer from the underlying reader.
Source§

fn read_f32<T>(&mut self) -> Result<f32, Error>
where T: ByteOrder,

Reads a IEEE754 single-precision (4 bytes) floating point number from the underlying reader. Read more
Source§

fn read_f64<T>(&mut self) -> Result<f64, Error>
where T: ByteOrder,

Reads a IEEE754 double-precision (8 bytes) floating point number from the underlying reader. Read more
Source§

fn read_u16_into<T>(&mut self, dst: &mut [u16]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of unsigned 16 bit integers from the underlying reader. Read more
Source§

fn read_u32_into<T>(&mut self, dst: &mut [u32]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of unsigned 32 bit integers from the underlying reader. Read more
Source§

fn read_u64_into<T>(&mut self, dst: &mut [u64]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of unsigned 64 bit integers from the underlying reader. Read more
Source§

fn read_u128_into<T>(&mut self, dst: &mut [u128]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of unsigned 128 bit integers from the underlying reader. Read more
Source§

fn read_i8_into(&mut self, dst: &mut [i8]) -> Result<(), Error>

Reads a sequence of signed 8 bit integers from the underlying reader. Read more
Source§

fn read_i16_into<T>(&mut self, dst: &mut [i16]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of signed 16 bit integers from the underlying reader. Read more
Source§

fn read_i32_into<T>(&mut self, dst: &mut [i32]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of signed 32 bit integers from the underlying reader. Read more
Source§

fn read_i64_into<T>(&mut self, dst: &mut [i64]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of signed 64 bit integers from the underlying reader. Read more
Source§

fn read_i128_into<T>(&mut self, dst: &mut [i128]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of signed 128 bit integers from the underlying reader. Read more
Source§

fn read_f32_into<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of IEEE754 single-precision (4 bytes) floating point numbers from the underlying reader. Read more
Source§

fn read_f32_into_unchecked<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>
where T: ByteOrder,

👎Deprecated since 1.2.0: please use read_f32_into instead
DEPRECATED. Read more
Source§

fn read_f64_into<T>(&mut self, dst: &mut [f64]) -> Result<(), Error>
where T: ByteOrder,

Reads a sequence of IEEE754 double-precision (8 bytes) floating point numbers from the underlying reader. Read more
Source§

fn read_f64_into_unchecked<T>(&mut self, dst: &mut [f64]) -> Result<(), Error>
where T: ByteOrder,

👎Deprecated since 1.2.0: please use read_f64_into instead
DEPRECATED. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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

impl<W> WriteBytesExt for W
where W: Write + ?Sized,

Source§

fn write_u8(&mut self, n: u8) -> Result<(), Error>

Writes an unsigned 8 bit integer to the underlying writer. Read more
Source§

fn write_i8(&mut self, n: i8) -> Result<(), Error>

Writes a signed 8 bit integer to the underlying writer. Read more
Source§

fn write_u16<T>(&mut self, n: u16) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 16 bit integer to the underlying writer. Read more
Source§

fn write_i16<T>(&mut self, n: i16) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 16 bit integer to the underlying writer. Read more
Source§

fn write_u24<T>(&mut self, n: u32) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 24 bit integer to the underlying writer. Read more
Source§

fn write_i24<T>(&mut self, n: i32) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 24 bit integer to the underlying writer. Read more
Source§

fn write_u32<T>(&mut self, n: u32) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 32 bit integer to the underlying writer. Read more
Source§

fn write_i32<T>(&mut self, n: i32) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 32 bit integer to the underlying writer. Read more
Source§

fn write_u48<T>(&mut self, n: u64) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 48 bit integer to the underlying writer. Read more
Source§

fn write_i48<T>(&mut self, n: i64) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 48 bit integer to the underlying writer. Read more
Source§

fn write_u64<T>(&mut self, n: u64) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 64 bit integer to the underlying writer. Read more
Source§

fn write_i64<T>(&mut self, n: i64) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 64 bit integer to the underlying writer. Read more
Source§

fn write_u128<T>(&mut self, n: u128) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned 128 bit integer to the underlying writer.
Source§

fn write_i128<T>(&mut self, n: i128) -> Result<(), Error>
where T: ByteOrder,

Writes a signed 128 bit integer to the underlying writer.
Source§

fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned n-bytes integer to the underlying writer. Read more
Source§

fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error>
where T: ByteOrder,

Writes a signed n-bytes integer to the underlying writer. Read more
Source§

fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error>
where T: ByteOrder,

Writes an unsigned n-bytes integer to the underlying writer. Read more
Source§

fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error>
where T: ByteOrder,

Writes a signed n-bytes integer to the underlying writer. Read more
Source§

fn write_f32<T>(&mut self, n: f32) -> Result<(), Error>
where T: ByteOrder,

Writes a IEEE754 single-precision (4 bytes) floating point number to the underlying writer. Read more
Source§

fn write_f64<T>(&mut self, n: f64) -> Result<(), Error>
where T: ByteOrder,

Writes a IEEE754 double-precision (8 bytes) floating point number to the underlying writer. Read more