mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-12-27 04:19:33 +01:00
16 lines
311 B
Rust
16 lines
311 B
Rust
//! Crate
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
#![deny(missing_docs)]
|
|
//deny_warnings_placeholder_for_ci
|
|
#![allow(incomplete_features)]
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
pub use rtic_time::{Monotonic, TimeoutError, TimerQueue};
|
|
|
|
#[cfg(feature = "cortex_m_sytick")]
|
|
pub mod systick;
|
|
|
|
#[cfg(feature = "rp2040")]
|
|
pub mod rp2040;
|