rust-industrial-io icon indicating copy to clipboard operation
rust-industrial-io copied to clipboard

Rust interface to the Linux Industrial I/O subsystem

Results 6 rust-industrial-io issues
Sort by recently updated
recently updated
newest added

This PR removes the version-specific features and bindings from `libiio` and `libiio-sys`, and provides a new build script that uses `pkg-config` to locate the native libiio (versions 0.19 through 0.25)...

Hi, I've been working on some Rust IIO applications and noticed that this library - while still usable today - hasn't been updated in a while. I've been doing some...

The library is missing a way to write data to buffers (or am I missing something?). I added a method that returns a mutable slice to the buffer data. It's...

The `libiio`has an [iio_device_get_label()](http://analogdevicesinc.github.io/libiio/v0.24/libiio/group__Device.html#gaa7dfffe6431d1f36abf523470e866641) function that is useful to find a device that is linked to a particular use. Basically, you add a `label` attribute to the DTS node (see...

The `build.rs` file is hard-wired to search for the libiio files under `/opt/homebrew/Frameworks` on a Mac. This isn't the standard location for homebrew files on all machines or versions, and...

The readme states that "the contexts and devices in the underlying libiio are not thread safe." They actually are, though. You can't obviously access some resources at the same time...