7b838d0336
This gets rid of another PeripheralMutex usage.
14 lines
289 B
Rust
14 lines
289 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 atomic_ring_buffer;
|
|
pub mod drop;
|
|
mod macros;
|
|
mod peripheral;
|
|
pub mod ratio;
|
|
pub mod ring_buffer;
|
|
pub use peripheral::{Peripheral, PeripheralRef};
|