#embedded-hal #hardware-abstraction-layer #bus #abstraction-layer #io #devices #sharing

no-std dev embedded-hal-bus

Bus/Device connection mechanisms for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems

8 releases

0.1.0 Jan 9, 2024
0.1.0-rc.3 Dec 14, 2023
0.1.0-rc.2 Nov 29, 2023
0.1.0-rc.1 Aug 15, 2023
0.1.0-alpha.0 Aug 17, 2022

#226 in Embedded development

Download history 475/week @ 2023-11-20 1610/week @ 2023-11-27 1597/week @ 2023-12-04 1597/week @ 2023-12-11 1367/week @ 2023-12-18 468/week @ 2023-12-25 1003/week @ 2024-01-01 1612/week @ 2024-01-08 1404/week @ 2024-01-15 1968/week @ 2024-01-22 2792/week @ 2024-01-29 2640/week @ 2024-02-05 3050/week @ 2024-02-12 3236/week @ 2024-02-19 3790/week @ 2024-02-26 3567/week @ 2024-03-04

13,957 downloads per month
Used in 18 crates (17 directly)

MIT/Apache

93KB
1K SLoC

crates.io crates.io Documentation Minimum Supported Rust Version

embedded-hal-bus

Bus sharing utilities for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems.

embedded-hal provides traits for SPI and I2C buses and devices. This crate provides hardware-independent adapters for sharing a single bus between multiple devices, compatible with the traits.

This project is developed and maintained by the HAL team.

SPI

To support bus sharing, embedded-hal provides the SpiBus and SpiDevice traits. SpiBus represents an entire bus, while SpiDevice represents a device on that bus. For further details on these traits, please consult the embedded-hal documentation.

embedded-hal trait implementations for microcontrollers should implement the SpiBus trait. However, device drivers should use the SpiDevice traits, not the SpiBus traits if at all possible in order to allow for sharing of the bus they are connected to.

This crate provides mechanisms to connect a SpiBus and a SpiDevice.

I2C

In the case of I2C, the same I2c embedded-hal trait represents either an entire bus, or a device on a bus. This crate provides mechanisms to obtain multiple I2c instances out of a single I2c instance, sharing the bus.

Optional Cargo features

  • std: enable shared bus implementations using std::sync::Mutex.
  • async: enable embedded-hal-async support.
  • defmt-03: Derive defmt::Format from defmt 0.3 for enums and structs.

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.

Enabling the async Cargo features requires Rust 1.75 or higher.

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.

Dependencies

~190KB