embassy/embassy-hal-common/src/lib.rs
2022-07-29 23:40:36 +02:00

12 lines
261 B
Rust

#![no_std]
#![allow(clippy::new_without_default)]
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
pub mod drop;
mod macros;
mod peripheral;
pub mod ratio;
pub mod ring_buffer;
pub use peripheral::{Peripheral, PeripheralRef};