aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarnaby Walters <[email protected]>2024-02-28 15:48:37 +0100
committerBarnaby Walters <[email protected]>2024-02-28 15:48:37 +0100
commitd07a0148d759fa09ba1ee8dc4810bb4edd8bda49 (patch)
tree5c1fb0054b26dcdeb1a97454c733fdc04d604ac4
parent2787164ea9ba30f806d6c38443d2eca2984b1e62 (diff)
Documented rp2040 probe-rs info bug, linked to new_project page
-rw-r--r--docs/modules/ROOT/pages/getting_started.adoc3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/modules/ROOT/pages/getting_started.adoc b/docs/modules/ROOT/pages/getting_started.adoc
index e8bc84255..73cb5530d 100644
--- a/docs/modules/ROOT/pages/getting_started.adoc
+++ b/docs/modules/ROOT/pages/getting_started.adoc
@@ -129,6 +129,8 @@ Make sure that you didn’t accidentally run `+cargo add probe-rs+` (which adds
129 129
130If you’re using a raspberry pi pico-w, make sure you’re running `+cargo run --bin wifi_blinky --release+` rather than the regular blinky. The pico-w’s on-board LED is connected to the WiFi chip, which needs to be initialized before the LED can be blinked. 130If you’re using a raspberry pi pico-w, make sure you’re running `+cargo run --bin wifi_blinky --release+` rather than the regular blinky. The pico-w’s on-board LED is connected to the WiFi chip, which needs to be initialized before the LED can be blinked.
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].
133
132If you’re still having problems, check the link:https://embassy.dev/book/dev/faq.html[FAQ], or ask for help in the link:https://matrix.to/#/#embassy-rs:matrix.org[Embassy Chat Room]. 134If you’re still having problems, check the link:https://embassy.dev/book/dev/faq.html[FAQ], or ask for help in the link:https://matrix.to/#/#embassy-rs:matrix.org[Embassy Chat Room].
133 135
134== What's next? 136== What's next?
@@ -138,3 +140,4 @@ Congratulations, you have your first Embassy application running! Here are some
138* Read more about the xref:runtime.adoc[executor]. 140* Read more about the xref:runtime.adoc[executor].
139* Read more about the xref:hal.adoc[HAL]. 141* Read more about the xref:hal.adoc[HAL].
140* Start xref:basic_application.adoc[writing your application]. 142* Start xref:basic_application.adoc[writing your application].
143* Learn how to xref:new_project.adoc[start a new embassy project by adapting an example].