aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/arch/riscv32.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Refactor integrated-timersDániel Buga2024-12-101-4/+0
|
* Add initializeDániel Buga2024-11-191-0/+4
|
* executor: remove portable-atomic for riscv.Zheng Li2024-03-021-1/+1
|
* executor: rename macro crate to embassy-executor-macros, bump it.Dario Nieuwenhuis2023-12-071-1/+1
|
* executor: add support for main/task macros in stable (allocates tasks in an ↵Dario Nieuwenhuis2023-11-241-1/+0
| | | | arena)
* executor: remove atomic-polyfill.Dario Nieuwenhuis2023-11-151-1/+1
|
* Yeet core::sync::atomic, remove futures-util depDániel Buga2023-11-061-1/+1
|
* Fix fn nameDániel Buga2023-08-141-1/+1
|
* Remove interrupt executor, remove PenderContextDániel Buga2023-08-141-2/+2
|
* Remove the non-specific thread-mode executorDániel Buga2023-08-141-30/+54
|
* Make PenderContext opaqueDániel Buga2023-08-141-1/+1
|
* Remove the Pender enumDániel Buga2023-08-141-5/+5
|
* 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-3/+7
|
* Remove unnecessary !Send markersDániel Buga2023-08-121-4/+1
|
* POC: allow custom executorsDániel Buga2023-08-121-62/+38
|
* re-export main_riscv macro as main for riscv arch.Roy Buitenhuis2023-04-111-0/+3
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-031-61/+72
| | | | | | | | | 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.
* fix: revert race condition introduced for riscvUlf Lilleengen2022-11-231-5/+13
|
* restore SIGNAL_WORK_THREAD_MODESijmen Woutersen2022-11-121-1/+6
|
* riscv supportSijmen Woutersen2022-11-101-14/+1
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-0/+74