ruduino/src/modules/mod.rs

9 lines
178 B
Rust
Raw Normal View History

2017-12-13 11:55:57 +00:00
//! Modules that can be implemented for specific cores.
pub use self::spi::HardwareSpi;
2017-12-13 12:33:15 +00:00
pub use self::timer::{Timer8, Timer8Setup, Timer16, Timer16Setup};
2017-12-13 11:55:57 +00:00
mod spi;
mod timer;