rust-sysfs-gpio
rust-sysfs-gpio copied to clipboard
A Rust Interface to the Linux sysfs GPIO interface (https://www.kernel.org/doc/Documentation/gpio/sysfs.txt)
I want to ask why you have non sync operation from `fs` like `write_all` `read_to_string` Looks like you need use `tokio::fs` Or if it is ok, can you please tell...
The upstream sysfs interface is deprecated: > THIS ABI IS DEPRECATED, THE ABI DOCUMENTATION HAS BEEN MOVED TO Documentation/ABI/obsolete/sysfs-gpio AND NEW USERSPACE CONSUMERS ARE SUPPOSED TO USE THE CHARACTER DEVICE...
I'm not sure if this repository is still being maintained, but the crate is still very useful when working with older Linux kernels. This PR adds a simple implementation for...
We need to fix the CI so that we can merge new PRs. Inspiration can be drawn from [here](https://github.com/rust-embedded/gpio-cdev/blob/master/.github/workflows/ci.yml).