embedded_hal/blocking/mod.rs
1//! Blocking API
2//!
3//! In some cases it's possible to implement these blocking traits on top of one of the core HAL
4//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided.
5//! Implementing that marker trait will opt in your type into a blanket implementation.
6
7pub mod can;
8pub mod delay;
9pub mod i2c;
10pub mod rng;
11pub mod serial;
12pub mod spi;