aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-12-17 14:52:12 +0100
committerGitHub <[email protected]>2024-12-17 14:52:12 +0100
commitc504ae8d3a5eb754e0b0920b346dd1a2dc9e2b48 (patch)
treedfc3ac53ba9ffd270dc3d4e8b5a3d3daec3c3611 /embassy-executor/Cargo.toml
parent9cf037bc954cc347b5d52d90207f68090cc5b09e (diff)
parentc3c571e01ef902ccd2c3b176a4bc6ee3547d5da7 (diff)
Merge pull request #3656 from bugadani/timer-queue-special
Remove special handling of integrated timer queues and items
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 60fe7087a..2a64b9c83 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -92,6 +92,22 @@ trace = []
92## Enable support for rtos-trace framework 92## Enable support for rtos-trace framework
93rtos-trace = ["dep:rtos-trace", "trace", "dep:embassy-time-driver"] 93rtos-trace = ["dep:rtos-trace", "trace", "dep:embassy-time-driver"]
94 94
95#! ### Timer Item Payload Size
96#! Sets the size of the payload for timer items, allowing integrated timer implementors to store
97#! additional data in the timer item. The payload field will be aligned to this value as well.
98#! If these features are not defined, the timer item will contain no payload field.
99
100_timer-item-payload = [] # A size was picked
101
102## 1 bytes
103timer-item-payload-size-1 = ["_timer-item-payload"]
104## 2 bytes
105timer-item-payload-size-2 = ["_timer-item-payload"]
106## 4 bytes
107timer-item-payload-size-4 = ["_timer-item-payload"]
108## 8 bytes
109timer-item-payload-size-8 = ["_timer-item-payload"]
110
95#! ### Task Arena Size 111#! ### Task Arena Size
96#! Sets the [task arena](#task-arena) size. Necessary if you’re not using `nightly`. 112#! Sets the [task arena](#task-arena) size. Necessary if you’re not using `nightly`.
97#! 113#!