13 releases

0.4.0 Jan 12, 2024
0.4.0-alpha.3 Aug 5, 2022
0.4.0-alpha.2 Feb 14, 2022
0.4.0-alpha.1 Oct 7, 2021
0.1.1 Feb 13, 2018

#15 in Embedded development

Download history 2024/week @ 2023-11-23 1746/week @ 2023-11-30 1577/week @ 2023-12-07 1917/week @ 2023-12-14 1329/week @ 2023-12-21 849/week @ 2023-12-28 1865/week @ 2024-01-04 2154/week @ 2024-01-11 2564/week @ 2024-01-18 2337/week @ 2024-01-25 2521/week @ 2024-02-01 3045/week @ 2024-02-08 2681/week @ 2024-02-15 3093/week @ 2024-02-22 4342/week @ 2024-02-29 2435/week @ 2024-03-07

13,199 downloads per month
Used in 153 crates (150 directly)

MIT/Apache

42KB
795 lines

crates.io crates.io Documentation Minimum Supported Rust Version

linux-embedded-hal

Implementation of the embedded-hal traits for Linux devices

This project is developed and maintained by the Embedded Linux team.

Documentation

GPIO character device

Since Linux kernel v4.4 the use of sysfs GPIO was deprecated and replaced by the character device GPIO. See gpio-cdev documentation for details.

This crate includes feature flag gpio_cdev that exposes CdevPin as wrapper around LineHandle from gpio-cdev. To enable it update your Cargo.toml. Please note that in order to prevent LineHandle fd from closing you should assign to a variable, see cdev issue for more details.

linux-embedded-hal = { version = "0.4", features = ["gpio_cdev"] }

SysfsPin can be still used with feature flag gpio_sysfs.

With default-features = false you can enable the features gpio_cdev, gpio_sysfs, i2c, and spi as needed.

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.65.0 and up. It might compile with older versions but that may change in any new patch release.

License

Licensed under either of

at your option.

Contribution

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.

Code of Conduct

Contribution to this crate is organized under the terms of the Rust Code of Conduct, the maintainer of this crate, the HAL team, promises to intervene to uphold that code of conduct.

Dependencies

~2–12MB
~116K SLoC