rivet-rtos 0.2.0

Rivet RTOS: zero-allocation async RTOS kernel — arch/board-independent, see docs/porting.md
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Async synchronization primitives.

pub mod atomic;
pub mod channel;
pub mod once;
pub mod semaphore;
pub mod signal;

pub use channel::{Channel, Receiver, Sender};
pub use once::Once;
pub use semaphore::Semaphore;
pub use signal::Signal;