embassy/embassy-executor
2023-11-06 21:50:40 +01:00
..
src Yeet core::sync::atomic, remove futures-util dep 2023-11-06 17:35:02 +01:00
build.rs Split embassy crate into embassy-executor, embassy-util. 2022-07-29 23:40:36 +02:00
Cargo.toml Prepare embassy-executor 0.3.2 2023-11-06 21:50:40 +01:00
CHANGELOG.md Prepare embassy-executor 0.3.2 2023-11-06 21:50:40 +01:00
README.md time: Update documentation to use new after_x convenience methods 2023-10-15 00:47:56 +01:00

embassy-executor

An async/await executor designed for embedded usage.

  • No alloc, no heap needed. Task futures are statically allocated.
  • No "fixed capacity" data structures, executor works with 1 or 1000 tasks without needing config/tuning.
  • Integrated timer queue: sleeping is easy, just do Timer::after_secs(1).await;.
  • No busy-loop polling: CPU sleeps when there's no work to do, using interrupts or WFE/SEV.
  • Efficient polling: a wake will only poll the woken task, not all of them.
  • Fair: a task can't monopolize CPU time even if it's constantly being woken. All other tasks get a chance to run before a given task gets polled for the second time.
  • Creating multiple executor instances is supported, to run tasks with multiple priority levels. This allows higher-priority tasks to preempt lower-priority tasks.