#expander #i2c #i2c-driver #driver #hardware

no-std sc16is752

用于与SC16IS752 I2C端口扩展器接口的no_std crate。此库提供对UART和8x GPIO线的访问

2个版本

0.1.1 2023年12月19日
0.1.0 2023年11月25日

#1137 in 嵌入式开发

MIT许可协议

21KB
428 代码行

Rust no_std NXP SC16IS752 I2C驱动程序

双UART和8x GPIO端口扩展器

也称为

  • Waveshare串行扩展HAT
  • MCU-752
  • 隔离485 HAT
  • 树莓派UART扩展器

数据表


lib.rs:

示例


let mut device = SC16IS752::new(SC16IS750_ADDRESS, i2c)?;
device.initalise(Channel::A, UartConfig::default().baudrate(9600))?;
device.gpio_set_pin_mode(GPIO::GPIO0, PinMode::Output)?;
device.flush(Channel::A)?;
loop {
    device.write_byte(Channel::A, "a".as_bytes()[0])?;
    println!("RX A = {:?}", device.read_byte(Channel::A)?);

    for byte in b"This is channel A" {
        device.write_byte(Channel::A, byte)?;
    }
    let mut buf_a: Vec<u8> = vec![];
    for _ in 0..device.fifo_available_data(Channel::A)? {
        match device.read_byte(Channel::A)? {
            Some(byte) => buf_a.push(byte),
            None => break,
        }
    }
    println!("RX UART A = {}", String::from_utf8_lossy(&buf_a));

    thread::sleep(Duration::from_millis(250));
    println!("Testing GPIO states");
    device.gpio_set_pin_state(GPIO::GPIO0, PinState::High)?;
    println!(
        "GPIO0 = {:?} (Output)",
        device.gpio_get_pin_state(GPIO::GPIO0)?
    );
    println!("Set GPIO0 to low");
    device.gpio_set_pin_state(GPIO::GPIO0, PinState::Low)?;
    thread::sleep(Duration::from_millis(250));
    println!(
        "GPIO0 = {:?} (Output toggled)",
        device.gpio_get_pin_state(GPIO::GPIO0)?
    );

依赖项

~68KB