aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Królczyk <[email protected]>2024-06-10 11:25:23 +0200
committerKrzysztof Królczyk <[email protected]>2024-06-10 11:25:43 +0200
commit268430bd9fc70bef9f4038f5f05b51eb1668a1fd (patch)
treea3618a5d5db2e2aee1b411b9085b8cc78b063c6d
parent5f9bc6def7ea8698a6ce45d8e12e1d1bd8cce876 (diff)
stm32/docs: correct typos, links
Signed-off-by: Krzysztof Królczyk <[email protected]>
-rw-r--r--docs/pages/getting_started.adoc5
-rw-r--r--embassy-boot-stm32/Cargo.toml2
-rw-r--r--embassy-stm32/README.md2
3 files changed, 6 insertions, 3 deletions
diff --git a/docs/pages/getting_started.adoc b/docs/pages/getting_started.adoc
index 77275a857..017409018 100644
--- a/docs/pages/getting_started.adoc
+++ b/docs/pages/getting_started.adoc
@@ -131,7 +131,10 @@ If you’re using a raspberry pi pico-w, make sure you’re running `+cargo run
131 131
132If you’re using an rp2040 debug probe (e.g. the pico probe) and are having issues after running `probe-rs info`, unplug and reconnect the probe, letting it power cycle. Running `probe-rs info` is link:https://github.com/probe-rs/probe-rs/issues/1849[known to put the pico probe into an unusable state]. 132If you’re using an rp2040 debug probe (e.g. the pico probe) and are having issues after running `probe-rs info`, unplug and reconnect the probe, letting it power cycle. Running `probe-rs info` is link:https://github.com/probe-rs/probe-rs/issues/1849[known to put the pico probe into an unusable state].
133 133
134If you’re still having problems, check the link:https://embassy.dev/book/#_frequently_asked_questions[FAQ], or ask for help in the link:https://matrix.to/#/#embassy-rs:matrix.org[Embassy Chat Room]. 134:embassy-dev-faq-link-with-hash: https://embassy.dev/book/#_frequently_asked_questions
135:embassy-matrix-channel: https://matrix.to/#/#embassy-rs:matrix.org
136
137If you’re still having problems, check the {embassy-dev-faq-link-with-hash}[FAQ], or ask for help in the {embassy-matrix-channel}[Embassy Chat Room].
135 138
136== What's next? 139== What's next?
137 140
diff --git a/embassy-boot-stm32/Cargo.toml b/embassy-boot-stm32/Cargo.toml
index d4525a6de..52ad1b463 100644
--- a/embassy-boot-stm32/Cargo.toml
+++ b/embassy-boot-stm32/Cargo.toml
@@ -13,7 +13,7 @@ categories = [
13] 13]
14 14
15[package.metadata.embassy_docs] 15[package.metadata.embassy_docs]
16src_base = "https://github.com/embassy-rs/embassy/blob/embassy-boot-nrf-v$VERSION/embassy-boot-stm32/src/" 16src_base = "https://github.com/embassy-rs/embassy/blob/embassy-boot-stm32-v$VERSION/embassy-boot-stm32/src/"
17src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-boot-stm32/src/" 17src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-boot-stm32/src/"
18features = ["embassy-stm32/stm32f429zi"] 18features = ["embassy-stm32/stm32f429zi"]
19target = "thumbv7em-none-eabi" 19target = "thumbv7em-none-eabi"
diff --git a/embassy-stm32/README.md b/embassy-stm32/README.md
index e9ae455a4..445366f8d 100644
--- a/embassy-stm32/README.md
+++ b/embassy-stm32/README.md
@@ -35,4 +35,4 @@ This crate can run on any executor.
35Optionally, some features requiring [`embassy-time`](https://crates.io/crates/embassy-time) can be activated with the `time` feature. If you enable it, 35Optionally, some features requiring [`embassy-time`](https://crates.io/crates/embassy-time) can be activated with the `time` feature. If you enable it,
36you must link an `embassy-time` driver in your project. 36you must link an `embassy-time` driver in your project.
37 37
38The `low-power` feature integrates specifically with `embassy-executor`, it can't be ued on other executors for now. 38The `low-power` feature integrates specifically with `embassy-executor`, it can't be used on other executors for now.