Minor typo corrections
This commit is contained in:
parent
0fb57ef87d
commit
5150deb70b
2 changed files with 4 additions and 4 deletions
|
@ -41,11 +41,11 @@ mock-driver = ["tick-hz-1_000_000"]
|
||||||
|
|
||||||
#! ### Generic Queue
|
#! ### Generic Queue
|
||||||
|
|
||||||
## Create a global, generic queue that can be used with any executor
|
## Create a global, generic queue that can be used with any executor.
|
||||||
## To use this you must have a time driver provided.
|
## To use this you must have a time driver provided.
|
||||||
generic-queue = []
|
generic-queue = []
|
||||||
|
|
||||||
#! The following features set how many timers are used for the generic queue. At most 1
|
#! The following features set how many timers are used for the generic queue. At most one
|
||||||
#! `generic-queue-*` feature can be enabled. If none is enabled, a default of 64 timers is used.
|
#! `generic-queue-*` feature can be enabled. If none is enabled, a default of 64 timers is used.
|
||||||
#!
|
#!
|
||||||
#! When using embassy-time from libraries, you should *not* enable any `generic-queue-*` feature, to allow the
|
#! When using embassy-time from libraries, you should *not* enable any `generic-queue-*` feature, to allow the
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
Timekeeping, delays and timeouts.
|
Timekeeping, delays and timeouts.
|
||||||
|
|
||||||
Timekeeping is done with elapsed time since system boot. Time is represented in
|
Timekeeping is done with elapsed time since system boot. Time is represented in
|
||||||
ticks, where the tick rate is defined either by the driver (in the case of a fixed-
|
ticks, where the tick rate is defined either by the driver (in the case of a fixed-rate
|
||||||
rate tick) or chosen by the user with a [tick rate](#tick-rate) feature. The chosen
|
tick) or chosen by the user with a [tick rate](#tick-rate) feature. The chosen
|
||||||
tick rate applies to everything in `embassy-time` and thus determines the maximum
|
tick rate applies to everything in `embassy-time` and thus determines the maximum
|
||||||
timing resolution of <code>(1 / tick_rate) seconds</code>.
|
timing resolution of <code>(1 / tick_rate) seconds</code>.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue