aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/arch/xtensa.rs
Commit message (Collapse)AuthorAgeFilesLines
* executor: remove arch-xtensa.Dario Nieuwenhuis2023-12-031-89/+0
| | | | | | | | It's been broken for months and nobody has noticed. The `esp*-hal` crates have much better support. Fixes #2234 Closes #1912
* executor: add support for main/task macros in stable (allocates tasks in an ↵Dario Nieuwenhuis2023-11-241-1/+0
| | | | arena)
* executor: add missing `main` macro reexport on xtensa.Dario Nieuwenhuis2023-11-141-0/+3
|
* Fix fn nameDániel Buga2023-08-141-2/+2
|
* Remove interrupt executor, remove PenderContextDániel Buga2023-08-141-2/+2
|
* Remove the non-specific thread-mode executorDániel Buga2023-08-141-37/+61
|
* Make PenderContext opaqueDániel Buga2023-08-141-1/+1
|
* Remove the Pender enumDániel Buga2023-08-141-4/+4
|
* Remove thread-context featureDániel Buga2023-08-141-2/+0
|
* Tweak identifiers and commentsDániel Buga2023-08-121-9/+4
|
* Lift thread-context feature restrictionsDániel Buga2023-08-121-9/+10
|
* Remove unnecessary !Send markersDániel Buga2023-08-121-9/+2
|
* POC: allow custom executorsDániel Buga2023-08-121-65/+48
|
* Work around xtensa deadlock, take 2Dániel Buga2023-05-131-12/+20
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-031-62/+73
| | | | | | | | | This introduces a `Pender` struct with enum cases for thread-mode, interrupt-mode and custom callback executors. This avoids calls through function pointers when using only the thread or interrupt executors. Faster, and friendlier to `cargo-call-stack`. `embassy-executor` now has `arch-xxx` Cargo features to select the arch and to enable the builtin executors (thread and interrupt).
* Remove unnecessary use of atomic-polyfill.Dario Nieuwenhuis2022-12-231-2/+1
| | | | Only use it when CAS is actually needed.
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-0/+75