crates.io crates.io Documentation Minimum Supported Rust Version

embedded-hal

A Hardware Abstraction Layer (HAL) for embedded systems

This project is developed and maintained by the HAL team.

NOTE This HAL is still is active development. Expect the traits presented here to be tweaked, split or be replaced wholesale before being stabilized, i.e. before hitting the 1.0.0 release.

NOTE If you want to use an alpha release of the 1.0.0 version, use an exact version specifier in your Cargo.toml like: embedded-hal = "=1.0.0-alpha.2".

Companion crates

The main embedded-hal crate contains only blocking traits, where the operation is done synchronously before returning. Check out the following crates, which contain versions of the traits for other execution models:

The embedded-hal-bus crate provides utilities for sharing SPI and I2C buses.

Additionally, more domain-specific traits are available in separate crates: - embedded-can: Controller Area Network (CAN)

Design goals

The HAL

Out of scope

Platform agnostic drivers

You can find platform agnostic drivers built on top of embedded-hal on crates.io by searching for the embedded-hal keyword.

If you are writing a platform agnostic driver yourself you are highly encouraged to add the embedded-hal keyword to your crate before publishing it!

Serial/UART traits

There is no serial traits in embedded-hal. Instead, use embedded-io. A serial port is essentially a byte-oriented stream, and that's what embedded-io models. Sharing the traits with all byte streams has some advantages. For example, it allows generic code providing a command-line interface or a console to operate either on hardware serial ports or on virtual ones like Telnet or USB CDC-ACM.

Optional Cargo features

Minimum Supported Rust Version (MSRV)

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

See here for details on how the MSRV may be upgraded.

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.