diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-12-17 14:52:12 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-17 14:52:12 +0100 |
| commit | c504ae8d3a5eb754e0b0920b346dd1a2dc9e2b48 (patch) | |
| tree | dfc3ac53ba9ffd270dc3d4e8b5a3d3daec3c3611 /embassy-executor/Cargo.toml | |
| parent | 9cf037bc954cc347b5d52d90207f68090cc5b09e (diff) | |
| parent | c3c571e01ef902ccd2c3b176a4bc6ee3547d5da7 (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.toml | 16 |
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 |
| 93 | rtos-trace = ["dep:rtos-trace", "trace", "dep:embassy-time-driver"] | 93 | rtos-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 | ||
| 103 | timer-item-payload-size-1 = ["_timer-item-payload"] | ||
| 104 | ## 2 bytes | ||
| 105 | timer-item-payload-size-2 = ["_timer-item-payload"] | ||
| 106 | ## 4 bytes | ||
| 107 | timer-item-payload-size-4 = ["_timer-item-payload"] | ||
| 108 | ## 8 bytes | ||
| 109 | timer-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 | #! |
