martos 0.4.0

Martos is an elegant real-time operating system designed for creating complex multi-agent systems. Developers have the flexibility to write software for Martos using either Rust (preferred) or C languages.
Documentation
1
2
3
4
5
6
7
8
9
use crate::timer::TickType;

/// Mips64 hardware timer setup.
pub fn setup_hardware_timer() {}

/// Mips64 getting hardware tick counter.
pub fn get_tick_counter() -> TickType {
    0
}