aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2025-09-08 12:33:04 +0200
committerDario Nieuwenhuis <[email protected]>2025-09-11 14:45:41 +0200
commit09701a339d9085d86a69bf271299d7b59eda9fdc (patch)
tree8e0a7439cf887f64e0f5e25309ce52f1ae483d63 /embassy-executor/src/raw
parent401fac6ea95b6dd16492d784f99f07fb9a1b318b (diff)
Fix example
Diffstat (limited to 'embassy-executor/src/raw')
-rw-r--r--embassy-executor/src/raw/deadline.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/deadline.rs b/embassy-executor/src/raw/deadline.rs
index d08dd06ed..f6d016ae7 100644
--- a/embassy-executor/src/raw/deadline.rs
+++ b/embassy-executor/src/raw/deadline.rs
@@ -2,7 +2,7 @@ use core::sync::atomic::{AtomicU32, Ordering};
2 2
3/// A type for interacting with the deadline of the current task 3/// A type for interacting with the deadline of the current task
4/// 4///
5/// Requires the `edf-scheduler` feature. 5/// Requires the `scheduler-deadline` feature.
6/// 6///
7/// Note: Interacting with the deadline should be done locally in a task. 7/// Note: Interacting with the deadline should be done locally in a task.
8/// In theory you could try to set or read the deadline from another task, 8/// In theory you could try to set or read the deadline from another task,