mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
12 lines
207 B
Rust
12 lines
207 B
Rust
|
//! Crate
|
||
|
|
||
|
#![no_std]
|
||
|
#![no_main]
|
||
|
#![deny(missing_docs)]
|
||
|
#![allow(incomplete_features)]
|
||
|
#![feature(async_fn_in_trait)]
|
||
|
|
||
|
pub use rtic_timer::{Monotonic, TimeoutError, TimerQueue};
|
||
|
|
||
|
pub mod systick_monotonic;
|