5 releases

0.3.0 May 11, 2024
0.2.3 Jan 21, 2023
0.2.2 Oct 15, 2022
0.2.1 Sep 15, 2022
0.2.0 Jul 31, 2022

#6 in #libgpiod

Download history 809/week @ 2024-02-06 1171/week @ 2024-02-13 1240/week @ 2024-02-20 1463/week @ 2024-02-27 952/week @ 2024-03-05 1134/week @ 2024-03-12 1213/week @ 2024-03-19 790/week @ 2024-03-26 1452/week @ 2024-04-02 882/week @ 2024-04-09 720/week @ 2024-04-16 814/week @ 2024-04-23 717/week @ 2024-04-30 761/week @ 2024-05-07 1074/week @ 2024-05-14 465/week @ 2024-05-21

3,115 downloads per month
Used in 6 crates (4 directly)

MIT license

69KB
2K SLoC

libgpiod in Rust

github crate docs MIT CI

Rust crate for interfacing with Linux GPIO character devices.

It provides an interface to the Linux GPIO using the chardev module. This interface involves calling ioctl funcions which are unsafe and require some unintuitive variable mapping. The functionality provided here is highly inspired by libgpiod.

Since all functionality is dependent on Linux function calls, this crate only compiles for Linux systems.

ABI compatibility

Both ABI v1 (linux >= 4.0) and v2 (linux >= v5.10) supported but edge detection implemented for v2 only. Deprecated sysfs-based API (linux < 4.0) currently is not supported at all.

Crates

  • gpiod-core - core abstractions and low level interface (not for end users)
  • gpiod - sync interface which supports synchronous operation only
  • tokio-gpiod - async interface for tokio fans
  • async-gpiod - async interface to use with non-tokio async runtimes

Dependencies

~2MB
~41K SLoC