mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-19 22:35:19 +01:00
11 lines
206 B
Rust
11 lines
206 B
Rust
//! Crate
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
#![deny(missing_docs)]
|
|
#![allow(incomplete_features)]
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
pub use rtic_time::{Monotonic, TimeoutError, TimerQueue};
|
|
|
|
pub mod systick_monotonic;
|