embedded-runtime 0.4.0

A tiny async runtime for embedded devices
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]
#![doc = include_str!("../README.md")]

pub mod spin;
pub mod error;
pub mod executor;
mod runtime;

pub use crate::{spin::spin_once, executor::Executor};