rt 0.19.1

A real-time operating system capable of full preemption
Documentation
1
2
3
4
5
6
7
8
use crate::bindings::rt_tick_count;

pub type Utick = core::ffi::c_ulong;

#[inline]
pub fn count() -> Utick {
    unsafe { rt_tick_count() }
}