aboutsummaryrefslogtreecommitdiff
path: root/docs/pages
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-12-09 00:28:14 +0100
committerDániel Buga <[email protected]>2024-12-15 18:49:57 +0100
commit2f2e2c6031a1abaecdac5ed2febe109e647fe6fd (patch)
tree57ecbf9d7c0ab5e9439f12aedeaa58d0156d1605 /docs/pages
parentb268b1795fed58544c166c41842ce0d66328aa3e (diff)
Make `integrated-timers` the default, remove Cargo feature.
Diffstat (limited to 'docs/pages')
-rw-r--r--docs/pages/new_project.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/new_project.adoc b/docs/pages/new_project.adoc
index f8dd848be..63340016b 100644
--- a/docs/pages/new_project.adoc
+++ b/docs/pages/new_project.adoc
@@ -80,7 +80,7 @@ At the time of writing, embassy is already published to crates.io. Therefore, de
80---- 80----
81[dependencies] 81[dependencies]
82embassy-stm32 = { version = "0.1.0", features = ["defmt", "time-driver-any", "stm32g474re", "memory-x", "unstable-pac", "exti"] } 82embassy-stm32 = { version = "0.1.0", features = ["defmt", "time-driver-any", "stm32g474re", "memory-x", "unstable-pac", "exti"] }
83embassy-executor = { version = "0.6.3", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] } 83embassy-executor = { version = "0.6.3", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt"] }
84embassy-time = { version = "0.3.2", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 84embassy-time = { version = "0.3.2", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
85---- 85----
86 86
@@ -100,7 +100,7 @@ An example Cargo.toml file might look as follows:
100---- 100----
101[dependencies] 101[dependencies]
102embassy-stm32 = {version = "0.1.0", features = ["defmt", "time-driver-any", "stm32g474re", "memory-x", "unstable-pac", "exti"]} 102embassy-stm32 = {version = "0.1.0", features = ["defmt", "time-driver-any", "stm32g474re", "memory-x", "unstable-pac", "exti"]}
103embassy-executor = { version = "0.3.3", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] } 103embassy-executor = { version = "0.3.3", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt"] }
104embassy-time = { version = "0.2", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 104embassy-time = { version = "0.2", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
105 105
106[patch.crates-io] 106[patch.crates-io]