embedded-hal 0.2.7

A Hardware Abstraction Layer (HAL) for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Blocking API
//!
//! In some cases it's possible to implement these blocking traits on top of one of the core HAL
//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided.
//! Implementing that marker trait will opt in your type into a blanket implementation.

pub mod can;
pub mod delay;
pub mod i2c;
pub mod rng;
pub mod serial;
pub mod spi;