aboutsummaryrefslogtreecommitdiff
path: root/embassy-hal-internal/src/lib.rs
blob: 3640ea18412a5b811c871ebcbeef186b6cd19c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![no_std]
#![allow(clippy::new_without_default)]
#![doc = include_str!("../README.md")]

// 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};

#[cfg(feature = "cortex-m")]
pub mod interrupt;