embedded_async_timer/impls/
mod.rs

1//! Peripheral implementations for the Timer trait.
2//!
3//! You will need to properly instantiate the peripheral yourself, and register the appropriate interrupt.
4//! The timer will require a `'static` lifetime to be accessible in the interrupt,
5//! if not using the RTIC crate or similar.
6//!
7//! You can implement Timer for a Peripheral yourself. Please use these implementations
8//! for reference on how to do this, and refer to the documentation of the Timer trait.
9
10#[cfg(feature = "stm32f103")]
11pub mod stm32f103_rtc;
12#[cfg(feature = "stm32l4x6")]
13pub mod stm32l4x6_lptim1;