| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -0/+1 |
| | | |||||
| * | executor: add "task metadata" concept, make name a task metadata. | Dario Nieuwenhuis | 2025-08-29 | 1 | -0/+3 |
| | | |||||
| * | embassy-executor: explicitly return impl Future in task inner task | Brezak | 2025-07-23 | 1 | -4/+4 |
| | | |||||
| * | Add diagnostic::on_unimplemented for nightly | Matthew Tran | 2025-06-01 | 1 | -0/+4 |
| | | |||||
| * | Mention ! in diagnostic | Matthew Tran | 2025-05-29 | 1 | -1/+1 |
| | | |||||
| * | Allow `-> impl Future<Output = ()>` in #[task] | Matthew Tran | 2025-05-28 | 1 | -2/+45 |
| | | |||||
| * | Add support for Cortex-A/R | Robin Mueller | 2025-05-28 | 1 | -0/+2 |
| | | |||||
| * | executor: add executor selection to #[embassy_executor::main] | outfoxxed | 2025-04-06 | 1 | -0/+2 |
| | | |||||
| * | Move macro helper functions to embassy-executor | Matthew Tran | 2025-03-29 | 1 | -0/+26 |
| | | |||||
| * | Statically allocate task pools on stable Rust. | Dario Nieuwenhuis | 2025-03-28 | 1 | -75/+103 |
| | | | | | | | Thanks @0e4ef622 for the awesome idea of how to do it and the first implementation. Co-Authored-By: Matthew Tran <[email protected]> | ||||
| * | executor: use WakerHack unconditionally even if `nightly` feature is ↵ | Dario Nieuwenhuis | 2024-11-12 | 1 | -1/+0 |
| | | | | | | | enabled. (#3528) This ensures the executor compiles with all recent nightly versions, including the stable-but-with-nightly-features-enabled xtensa rustc. | ||||
| * | Detect and allow older nightlies | Dániel Buga | 2024-11-06 | 1 | -0/+1 |
| | | |||||
| * | executor/spin: introduce an architecture agnostic executor | Dummyc0m | 2024-10-06 | 1 | -1/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | Spin polls the raw executor and never sleeps. It is useful for disabling any power features associated with wfi/wfe-like instructions. When implementing support for the CH32V30x MCU, the wfi instruction had issues interacting with the USB OTG peripheral and appeared to be non-spec-compliant. 1. When sending a USB Data-in packet, the USB peripheral appears to be unable to read the system main memory while in WFI. This manifests in the USB peripheral sending all or partially zeroed DATA packets. Disabling WFI works around this issue. 2. The WFI instruction does not wake up the processor when MIE is disabled. The MCU provides a WFITOWFE bit to emulate the WFE instruction on arm, which, when enabled, ignores the MIE and allows the processor to wake up. This works around the non-compliant WFI implementation. Co-authored-by: Codetector <[email protected]> Co-authored-by: Dummyc0m <[email protected]> | ||||
| * | fix: remove stable nightly feature | Oleksandr Babak | 2024-09-06 | 1 | -1/+0 |
| | | |||||
| * | use nightly waker_getters APIs | zjp | 2024-06-09 | 1 | -0/+1 |
| | | | | | | | | Since https://github.com/rust-lang/rust/issues/96992 has stalled, to prevent potential unsoundness caused by transmuting to &WakerHack, we can use nightly waker_getters APIs by gating it behind nightly feature in embassy-executor without waiting for it to be stablized. | ||||
| * | Merge remote-tracking branch 'origin' | sodo | 2024-01-02 | 1 | -0/+3 |
| |\ | |||||
| | * | [embassy-executor] improved documentation | Barnaby Walters | 2023-12-22 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * Feature auto-documentation * Task arena sizes in a <details> list * Non-documented comment explaining turbowakers with see-also link Further improvements: * Are the task-arena-size-* numbers sizes in bytes? or something else? * Task arena section could benefit from advice about how to choose a suitable size | ||||
| * | | add avr support | sodo | 2023-12-10 | 1 | -1/+2 |
| |/ | |||||
| * | executor: rename macro crate to embassy-executor-macros, bump it. | Dario Nieuwenhuis | 2023-12-07 | 1 | -1/+1 |
| | | |||||
| * | executor: remove arch-xtensa. | Dario Nieuwenhuis | 2023-12-03 | 1 | -3/+1 |
| | | | | | | | | | It's been broken for months and nobody has noticed. The `esp*-hal` crates have much better support. Fixes #2234 Closes #1912 | ||||
| * | executor: make task arena size configurable. | Dario Nieuwenhuis | 2023-11-24 | 1 | -3/+7 |
| | | |||||
| * | executor: add support for main/task macros in stable (allocates tasks in an ↵ | Dario Nieuwenhuis | 2023-11-24 | 1 | -3/+92 |
| | | | | | arena) | ||||
| * | executor: Remove non-functional rtos-trace-interrupt. | Dario Nieuwenhuis | 2023-11-24 | 1 | -22/+1 |
| | | |||||
| * | Upgrade static-cell to v2.0 | Dario Nieuwenhuis | 2023-11-02 | 1 | -1/+0 |
| | | |||||
| * | Update Rust nightly. | Dario Nieuwenhuis | 2023-11-01 | 1 | -0/+1 |
| | | |||||
| * | executor: add Pender, rework Cargo features. | Dario Nieuwenhuis | 2023-04-03 | 1 | -41/+30 |
| | | | | | | | | | | 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). | ||||
| * | executor: unify export mod. | Dario Nieuwenhuis | 2023-04-03 | 1 | -8/+4 |
| | | |||||
| * | refactor: autodetect macro variant | Ulf Lilleengen | 2022-11-23 | 1 | -1/+9 |
| | | | | | | Export all main macro per target architecture from embassy-macros, and select the appropriate macro in embassy-executor. | ||||
| * | Remove Forever, switch to static_cell. | Dario Nieuwenhuis | 2022-08-22 | 1 | -0/+6 |
| | | |||||
| * | Merge branch 'master' of https://github.com/embassy-rs/embassy into rtos-trace | Quentin Smith | 2022-08-19 | 1 | -7/+34 |
| |\ | |||||
| | * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 1 | -10/+32 |
| | | | |||||
| * | | Add separate feature flag to enable interrupt tracing | Quentin Smith | 2022-08-16 | 1 | -6/+6 |
| | | | |||||
| * | | cargo fmt | Quentin Smith | 2022-08-10 | 1 | -1/+0 |
| | | | |||||
| * | | Add support for rtos-trace behind a feature flag | Quentin Smith | 2022-08-10 | 1 | -0/+21 |
| |/ | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -0/+22 |
