aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-time/Cargo.toml4
-rw-r--r--embassy-time/README.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index 534894b20..7259169cd 100644
--- a/embassy-time/Cargo.toml
+++ b/embassy-time/Cargo.toml
@@ -41,11 +41,11 @@ mock-driver = ["tick-hz-1_000_000"]
41 41
42#! ### Generic Queue 42#! ### Generic Queue
43 43
44## Create a global, generic queue that can be used with any executor 44## Create a global, generic queue that can be used with any executor.
45## To use this you must have a time driver provided. 45## To use this you must have a time driver provided.
46generic-queue = [] 46generic-queue = []
47 47
48#! The following features set how many timers are used for the generic queue. At most 1 48#! The following features set how many timers are used for the generic queue. At most one
49#! `generic-queue-*` feature can be enabled. If none is enabled, a default of 64 timers is used. 49#! `generic-queue-*` feature can be enabled. If none is enabled, a default of 64 timers is used.
50#! 50#!
51#! When using embassy-time from libraries, you should *not* enable any `generic-queue-*` feature, to allow the 51#! When using embassy-time from libraries, you should *not* enable any `generic-queue-*` feature, to allow the
diff --git a/embassy-time/README.md b/embassy-time/README.md
index a4a622700..a4e150c14 100644
--- a/embassy-time/README.md
+++ b/embassy-time/README.md
@@ -3,8 +3,8 @@
3Timekeeping, delays and timeouts. 3Timekeeping, delays and timeouts.
4 4
5Timekeeping is done with elapsed time since system boot. Time is represented in 5Timekeeping is done with elapsed time since system boot. Time is represented in
6ticks, where the tick rate is defined either by the driver (in the case of a fixed- 6ticks, where the tick rate is defined either by the driver (in the case of a fixed-rate
7rate tick) or chosen by the user with a [tick rate](#tick-rate) feature. The chosen 7tick) or chosen by the user with a [tick rate](#tick-rate) feature. The chosen
8tick rate applies to everything in `embassy-time` and thus determines the maximum 8tick rate applies to everything in `embassy-time` and thus determines the maximum
9timing resolution of <code>(1 / tick_rate) seconds</code>. 9timing resolution of <code>(1 / tick_rate) seconds</code>.
10 10