Add blocking shared bus for i2c and SPI

This commit is contained in:
Henrik Alsér
2022-07-06 02:35:46 +02:00
parent 5fef527764
commit 264b32d71b
4 changed files with 145 additions and 2 deletions

View File

@ -1,4 +1,6 @@
//! Shared bus implementations for embedded-hal-async
//! Shared bus implementations
pub mod blocking;
/// Shared i2c bus implementation for embedded-hal-async
pub mod i2c;
/// Shared SPI bus implementation for embedded-hal-async
pub mod spi;