| Crates.io | tinywake |
| lib.rs | tinywake |
| version | 0.2.2 |
| created_at | 2025-03-14 21:09:52.5092+00 |
| updated_at | 2025-03-18 18:42:11.259735+00 |
| description | A minimal, no_std-compatible waker implementation for Cortex-M async executors. |
| homepage | |
| repository | https://github.com/ithinuel/TinyWake |
| max_upload_size | |
| id | 1592766 |
| size | 21,514 |
A minimal, no_std-compatible waker implementation for Cortex-M async executors.
heapless and portable-atomic.cortex-m architecture.Add this to your Cargo.toml:
[dependencies]
tinywake = "0.1.0"
use tinywake::run_all;
async fn my_task() {
// Your async code here
}
fn main() {
let mut task1 = my_task();
run_all([&mut task1]);
}
This project is licensed under the MIT License.