mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
12 lines
241 B
Rust
12 lines
241 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};
|
|
|
|
pub mod systick_monotonic;
|