aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2025-09-02 08:33:00 +0200
committerDániel Buga <[email protected]>2025-09-02 08:34:07 +0200
commit219cf09aab41cff9f2682a6b1e00610f96d25b1f (patch)
tree6254ec12c48952be5ac8ba78764f5d35c705392c /embassy-executor
parentde33d113a5fb70ca5086058cc894a2ce192c27d6 (diff)
Remove features, fix changelog
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/CHANGELOG.md4
-rw-r--r--embassy-executor/Cargo.toml16
2 files changed, 2 insertions, 18 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index 3e6c180c6..a36d270ba 100644
--- a/embassy-executor/CHANGELOG.md
+++ b/embassy-executor/CHANGELOG.md
@@ -20,8 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20 20
21- Added `extern "Rust" fn __embassy_time_queue_item_from_waker` 21- Added `extern "Rust" fn __embassy_time_queue_item_from_waker`
22- Removed `TaskRef::dangling` 22- Removed `TaskRef::dangling`
23- Added `embassy_time_queue_utils` as a dependency 23- Added `embassy-executor-timer-queue` as a dependency
24- Moved the `TimeQueueItem` struct and `timer-item-payload-size-*` features into embassy-time-queue-utils 24- Moved the `TimeQueueItem` struct and `timer-item-payload-size-*` features (as `timer-item-size-X-words`) into `embassy-executor-timer-queue`
25 25
26## 0.8.0 - 2025-07-31 26## 0.8.0 - 2025-07-31
27 27
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index dc423aba2..ed72a585f 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -125,19 +125,3 @@ trace = ["_any_trace"]
125## Enable support for rtos-trace framework 125## Enable support for rtos-trace framework
126rtos-trace = ["_any_trace", "metadata-name", "dep:rtos-trace", "dep:embassy-time-driver"] 126rtos-trace = ["_any_trace", "metadata-name", "dep:rtos-trace", "dep:embassy-time-driver"]
127_any_trace = [] 127_any_trace = []
128
129#! ### Timer Item Payload Size
130#! Sets the size of the payload for timer items, allowing integrated timer implementors to store
131#! additional data in the timer item. The payload field will be aligned to this value as well.
132#! If these features are not defined, the timer item will contain no payload field.
133
134_timer-item-payload = [] # A size was picked
135
136## 1 bytes
137timer-item-payload-size-1 = ["_timer-item-payload"]
138## 2 bytes
139timer-item-payload-size-2 = ["_timer-item-payload"]
140## 4 bytes
141timer-item-payload-size-4 = ["_timer-item-payload"]
142## 8 bytes
143timer-item-payload-size-8 = ["_timer-item-payload"]