embassy/embassy-traits/src/lib.rs

12 lines
214 B
Rust
Raw Normal View History

2021-03-01 23:32:23 +00:00
#![cfg_attr(not(feature = "std"), no_std)]
#![feature(generic_associated_types)]
2021-03-02 21:09:47 +00:00
#![feature(type_alias_impl_trait)]
2021-03-01 23:32:23 +00:00
pub mod delay;
2021-03-01 23:32:23 +00:00
pub mod flash;
pub mod gpio;
2021-03-02 21:09:47 +00:00
pub mod i2c;
2021-05-17 01:01:30 +00:00
pub mod rng;
2021-03-08 18:35:55 +00:00
pub mod spi;
2021-03-01 23:32:23 +00:00
pub mod uart;