bern-kernel 0.3.1

Preemptive real-time kernel for microcontrollers.
1
2
3
4
5
6
7
//! Collection of everything that can be executed on the CPU.

pub mod interrupt;
pub mod process;
pub mod runnable;
pub mod thread;
pub mod worker;