rivet-rtos 0.1.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
//! Async synchronization primitives.

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

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