mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
fix broken links to embassy book
This commit is contained in:
parent
ecd7888ba9
commit
d2045be9f3
@ -299,7 +299,7 @@ You can add a section to your `Cargo.toml` file like this, you'll need to patch
|
|||||||
|
|
||||||
Using `patch` will replace all direct AND indirect dependencies.
|
Using `patch` will replace all direct AND indirect dependencies.
|
||||||
|
|
||||||
See the link:https://embassy.dev/book/dev/new_project.html#_cargo_toml[new project docs] for more details on this approach.
|
See the link:https://embassy.dev/book/#_starting_a_new_project[new project docs] for more details on this approach.
|
||||||
|
|
||||||
[source,toml]
|
[source,toml]
|
||||||
----
|
----
|
||||||
|
@ -131,7 +131,7 @@ If you’re using a raspberry pi pico-w, make sure you’re running `+cargo run
|
|||||||
|
|
||||||
If 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].
|
If 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].
|
||||||
|
|
||||||
If 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].
|
If 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].
|
||||||
|
|
||||||
== What's next?
|
== What's next?
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ For any partition, the following preconditions are required:
|
|||||||
|
|
||||||
The linker scripts for the application and bootloader look similar, but the FLASH region must point to the BOOTLOADER partition for the bootloader, and the ACTIVE partition for the application.
|
The linker scripts for the application and bootloader look similar, but the FLASH region must point to the BOOTLOADER partition for the bootloader, and the ACTIVE partition for the application.
|
||||||
|
|
||||||
For more details on the bootloader, see [the documentation](https://embassy.dev/book/dev/bootloader.html).
|
For more details on the bootloader, see [the documentation](https://embassy.dev/book/#_bootloader).
|
||||||
|
|
||||||
## Hardware support
|
## Hardware support
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(spawner: Spawner) {
|
async fn main(spawner: Spawner) {
|
||||||
|
@ -24,7 +24,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -21,7 +21,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -72,7 +72,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -18,7 +18,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
|
|||||||
// If you are trying this and your USB device doesn't connect, the most
|
// If you are trying this and your USB device doesn't connect, the most
|
||||||
// common issues are the RCC config and vbus_detection
|
// common issues are the RCC config and vbus_detection
|
||||||
//
|
//
|
||||||
// See https://embassy.dev/book/dev/faq.html#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
|
||||||
// for more information.
|
// for more information.
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(_spawner: Spawner) {
|
async fn main(_spawner: Spawner) {
|
||||||
|
Loading…
Reference in New Issue
Block a user