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 | |
7 | pub mod can; |
8 | pub mod delay; |
9 | pub mod i2c; |
10 | pub mod rng; |
11 | pub mod serial; |
12 | pub mod spi; |
13 |