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
18
mod convert;
mod crc16;
mod ringbuf;
mod singleton;
mod lazy;

#[allow(unused)]
pub use ringbuf::RingBuf;

#[allow(unused)]
pub use crc16::crc16;

#[allow(unused)]
pub use crate::singleton;

pub use convert::*;

pub use lazy::*;