aboutsummaryrefslogtreecommitdiff
path: root/embassy-time/README.md
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-11 16:38:44 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-11 16:56:08 +0100
commit15f94fb0fc70463b9a50c997083fee3f5758b17a (patch)
tree17ccb5d369a9e7b0d2dbe0c7e39804b7f1f65458 /embassy-time/README.md
parentdcffad6b05a06bc5f4d09a35184d5ffe158e02cf (diff)
time: split driver into a separate embassy-time-driver crate.
Diffstat (limited to 'embassy-time/README.md')
-rw-r--r--embassy-time/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-time/README.md b/embassy-time/README.md
index a4e150c14..20772f1d8 100644
--- a/embassy-time/README.md
+++ b/embassy-time/README.md
@@ -12,7 +12,7 @@ Tick counts are 64 bits. The default tick rate of 1Mhz supports
12representing time spans of up to ~584558 years, which is big enough for all practical 12representing time spans of up to ~584558 years, which is big enough for all practical
13purposes and allows not having to worry about overflows. 13purposes and allows not having to worry about overflows.
14 14
15## Time driver 15## Global time driver
16 16
17The `time` module is backed by a global "time driver" specified at build time. 17The `time` module is backed by a global "time driver" specified at build time.
18Only one driver can be active in a program. 18Only one driver can be active in a program.
@@ -21,7 +21,7 @@ All methods and structs transparently call into the active driver. This makes it
21possible for libraries to use `embassy_time` in a driver-agnostic way without 21possible for libraries to use `embassy_time` in a driver-agnostic way without
22requiring generic parameters. 22requiring generic parameters.
23 23
24For more details, check the [`driver`] module. 24For more details, check the [`embassy_time_driver`] crate.
25 25
26## Instants and Durations 26## Instants and Durations
27 27