This is a platform agnostic Rust driver for the for TCA9548A and PCA9548A I2C
switches/multiplexers using the embedded-hal
traits.
This driver allows you to:
select_channels()
.split()
.The TCA954xA and PCA954x devices have two to eight bidirectional translating switches that can be controlled through the I2C bus. The SCL/SDA upstream pair fans out to eight downstream pairs, or channels. Any individual SCn/SDn channel or combination of channels can be selected, determined by the contents of the programmable control register. These downstream channels can be used to resolve I2C slave address conflicts. For example, if eight identical digital temperature sensors are needed in the application, one sensor can be connected at each channel: 0-N.
The TCA9545/3A and PCA9545/3A devices have an assosciated interrupt pin INT
for each channel
which can be polled to check which channels have pending interrupts.
(Tip: Can also be used as general inputs)
To use this driver, import this crate and an embedded_hal
implementation,
then instantiate the device.
Please find additional examples using hardware in this repository: driver-examples
use embedded_hal::i2c::I2c;
use linux_embedded_hal::I2cdev;
use xca9548a::{Error, SlaveAddr, Xca9548a};
fn main() {
let slave_address = 0b010_0000; // example slave address
let write_data = [0b0101_0101, 0b1010_1010]; // some data to be sent
let dev = I2cdev::new("/dev/i2c-1").unwrap();
let mut switch = Xca9548a::new(dev, SlaveAddr::default());
// Enable channel 0
switch.select_channels(0b0000_0001).unwrap();
// write to slave connected to channel 0 using
// the I2C switch just as a normal I2C device
if switch.write(slave_address, &write_data).is_err() {
println!("Error received!");
}
// read from the slave connected to channel 0 using the
// I2C switch just as a normal I2C device
let mut read_data = [0; 2];
if switch.read(slave_address, &mut read_data).is_err() {
println!("Error received!");
}
// write_read from the slave connected to channel 0 using
// the I2C switch just as a normal I2C device
if switch
.write_read(slave_address, &write_data, &mut read_data)
.is_err()
{
println!("Error received!");
}
// Split the device and pass the slave (virtual) I2C devices
// to an external driver
let parts = switch.split();
let mut some_driver = Driver::new(parts.i2c1);
let mut some_other_driver = Driver::new(parts.i2c2);
some_driver.do_something().unwrap();
some_other_driver.do_something().unwrap();
}
/// Some driver defined in a different crate.
/// Defined here for completeness.
struct Driver<I2C> {
i2c: I2C,
}
impl<I2C, E> Driver<I2C>
where
I2C: I2c<Error = E>,
E: core::fmt::Debug,
{
pub fn new(i2c: I2C) -> Self {
Driver { i2c }
}
pub fn do_something(&mut self) -> Result<(), Error<E>> {
self.i2c.write(0x21, &[0x01, 0x02]).map_err(Error::I2C)
}
}
For questions, issues, feature requests, and other changes, please file an issue in the github project.
This crate is guaranteed to compile on stable Rust 1.62 and up. It might compile with older versions but that may change in any new patch release.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.