aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
Commit message (Collapse)AuthorAgeFilesLines
* embassy-executor: explicitly return impl Future in task inner taskBrezak2025-07-233-6/+15
|
* embassy-executor: explicitly return impl Future in task inner taskBrezak2025-07-231-0/+14
|
* embassy-executor: unsafe tasks as unsafeBrezak2025-07-233-0/+27
|
* Merge pull request #4373 from fg-cfh/fix/name-new-tasksUlf Lilleengen2025-07-111-1/+11
|\ | | | | | | embassy-executor: rtos-trace: fix task naming for new tasks
| * embassy-executor: rtos-trace: fix task naming for new tasksFlorian Grandel2025-07-061-1/+11
| | | | | | | | | | | | | | | | Tasks that are spawned after starting SystemViewer were not named. This change ensures that tasks spawned while SystemViewer is running will be properly named, too. Signed-off-by: Florian Grandel <[email protected]>
* | `embassy-executor`: add release automation using `cargo-release`Ralph Ursprung2025-07-082-1/+7
| | | | | | | | | | | | | | | | | | | | | | this requires you to install [`cargo-release`]. note that this does not include a URL pointing to the diff on GitHub as is usually done in changelogs since `embassy` is a mono-repo and the GH UI doesn't offer a commit view per folder (see the [GH feature request] for this). [`cargo-release`]: https://crates.io/crates/cargo-release [GH feature request]: https://github.com/orgs/community/discussions/162131
* | prepare changelog for `embassy-executor` v0.8.0Ralph Ursprung2025-07-081-0/+12
| |
* | executor: mark Spawner::for_current_executor() as unsafe.Dario Nieuwenhuis2025-07-081-1/+17
| | | | | | | | It's unsound with manually-created Contexts, see https://github.com/embassy-rs/embassy/issues/4379
* | excutor: fix Send unsoundness with `-> impl Future` tasks.Dario Nieuwenhuis2025-07-086-4/+101
|/
* Update Rust nightly, stable.Dario Nieuwenhuis2025-07-043-80/+48
|
* Merge pull request #4266 from 0e4ef622/task-rpitDario Nieuwenhuis2025-06-2212-3/+401
|\ | | | | | | Allow `-> impl Future<Output = ()>` in #[task]
| * Update testsMatthew Tran2025-06-0110-20/+185
| |
| * Add diagnostic::on_unimplemented for nightlyMatthew Tran2025-06-012-1/+6
| |
| * Mention ! in diagnosticMatthew Tran2025-05-291-1/+1
| |
| * Add test for -> impl Future<Output = !>Matthew Tran2025-05-291-0/+12
| |
| * Allow `-> impl Future<Output = ()>` in #[task]Matthew Tran2025-05-287-3/+219
| |
* | Merge pull request #4244 from janderholm/masterDario Nieuwenhuis2025-06-013-11/+11
|\ \ | |/ |/| | | executor: Make state implementations and their conditions match
| * executor: Make state implementations and their conditions matchJohan Anderholm2025-05-233-11/+11
| | | | | | | | | | | | Use u8 for state_atomics and state_critical_section since that is all that is needed. Change arm condition to "32" since that is what is used and required.
* | Add support for Cortex-A/RRobin Mueller2025-05-284-0/+95
|/
* Update defmt dependenciesYuri Astrakhan2025-05-181-1/+1
|
* rustfmtKat Perez2025-05-081-1/+0
|
* remove unnecessary trace flagsKat Perez2025-05-081-7/+0
|
* move SpawnerTraceExt back into SpawnerKat Perez2025-05-082-42/+50
|
* update TraceExt trait name for SpawnerKat Perez2025-05-081-3/+3
|
* remove unused task_idKat Perez2025-05-081-12/+1
|
* implement TaskRefTrace for tracing-only fields in TaskRefKat Perez2025-05-082-36/+52
|
* move TaskTracker to traceKat Perez2025-05-082-72/+72
|
* move spawn_named into trace.rs through TraceExt traitKat Perez2025-05-082-35/+45
|
* change rtos-trace feature flag on tracing API to trace feature flagKat Perez2025-05-081-2/+2
|
* remove unused tracing APIKat Perez2025-05-081-29/+0
|
* make tracing API functions internalKat Perez2025-05-081-2/+2
|
* fix whitespace in the imports in trace.rsKat Perez2025-05-061-2/+3
|
* use an intrusive linked list in TaskHeader to track tasksKat Perez2025-05-063-106/+163
|
* add ID field to TaskHeaderKat Perez2025-05-062-0/+20
|
* remove name from TaskRegistry and retrieve from task header insteadKat Perez2025-05-062-28/+8
|
* add get/set for task nameKat Perez2025-05-061-0/+15
|
* add name to TaskHeaderKat Perez2025-05-061-0/+4
|
* whitespace in the documentationKat Perez2025-05-061-1/+1
|
* add a stub implementation for spawn_namedKat Perez2025-05-061-0/+7
| | | | When rtos-trace is not enabled, spawn_named will use spawn instead
* add a task registry to tracing infrastructureKat Perez2025-05-063-2/+166
|
* fix rustfmtPhil-hacker2025-04-081-1/+2
|
* fix compilation on anything not using the feature `arch-avr`Phil-hacker2025-04-081-1/+3
|
* fix the avr executorPhil-hacker2025-04-081-1/+3
|
* update `avr_device`Phil-hacker2025-04-081-1/+1
|
* Merge pull request #4046 from outfoxxed/main-macro-executorDario Nieuwenhuis2025-04-071-0/+2
|\ | | | | | | executor: add executor selection to #[embassy_executor::main]
| * executor: add executor selection to #[embassy_executor::main]outfoxxed2025-04-061-0/+2
| |
* | Merge pull request #4049 from kaspar030/executor_idDario Nieuwenhuis2025-04-062-0/+10
|\ \ | | | | | | | | | embassy-executor: introduce `Executor::id()`, `Spawner::executor_id()`
| * | embassy_executor: introduce `Spawner::executor_id()`Kaspar Schleiser2025-04-041-0/+5
| | |
| * | embassy-executor: introduce `Executor::id()`Kaspar Schleiser2025-04-041-0/+5
| | |
* | | embassy-sync, executor/wasm: don't select critical-section impl for stdDániel Buga2025-04-061-1/+1
| | |