From 68eac3a57cf5e27b454489384aa42083962f56cb Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 26 Sep 2020 00:36:02 +0200 Subject: Add multi-priority executor example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index c5e19f4fa..0162011f4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The `embassy::executor` module provides an async/await executor based on [static - No `alloc`, no heap needed. Task futures are statically allocated. - Integrated timer queue allows simple sleeping: `Timer::after(Duration::from_ticks(64000)).await;`. - Suitable for low-power operation. Using interrupts or `WFE/SEV` ensures the CPU sleeps when there's no work to do. No busy-loop polling. -- Creating multiple executor instances is supported, to run tasks with multiple priority levels. This allows higher-priority tasks to preempt lower-priority tasks. (example coming soon) +- Creating multiple executor instances is supported, to run tasks with multiple priority levels. This allows higher-priority tasks to preempt lower-priority tasks. - Compatible with RTIC (example coming soon). ## Utils -- cgit