mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-10-02 14:44:32 +00:00
18 lines
374 B
Rust
18 lines
374 B
Rust
#![no_std]
|
|
#![allow(clippy::new_without_default)]
|
|
#![doc = include_str!("../README.md")]
|
|
#![warn(missing_docs)]
|
|
|
|
// 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 use peripheral::{Peri, PeripheralType};
|
|
|
|
#[cfg(feature = "cortex-m")]
|
|
pub mod interrupt;
|