simpleos 0.6.3

A Simple OS use for MCU, that implements single-threaded asynchronous runtime.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![no_std]
#![warn(unused_must_use)]

pub extern crate alloc;
pub use anyhow::anyhow;
pub use anyhow::Result;
pub use core;
pub use async_trait::async_trait;

mod bindings;
pub mod console;
pub mod driver;
pub mod executor;
pub mod sys;

#[cfg(feature = "util")]
pub mod util;