aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32f4/src/bin/usb_ethernet.rs2
-rw-r--r--examples/stm32f4/src/bin/usb_hid_keyboard.rs2
-rw-r--r--examples/stm32f4/src/bin/usb_hid_mouse.rs2
-rw-r--r--examples/stm32f4/src/bin/usb_raw.rs2
-rw-r--r--examples/stm32f4/src/bin/usb_serial.rs2
-rw-r--r--examples/stm32f7/src/bin/usb_serial.rs2
-rw-r--r--examples/stm32h7/src/bin/usb_serial.rs2
-rw-r--r--examples/stm32l4/src/bin/usb_serial.rs2
8 files changed, 8 insertions, 8 deletions
diff --git a/examples/stm32f4/src/bin/usb_ethernet.rs b/examples/stm32f4/src/bin/usb_ethernet.rs
index 19ae16e8b..b398c35da 100644
--- a/examples/stm32f4/src/bin/usb_ethernet.rs
+++ b/examples/stm32f4/src/bin/usb_ethernet.rs
@@ -43,7 +43,7 @@ bind_interrupts!(struct Irqs {
43// If you are trying this and your USB device doesn't connect, the most 43// If you are trying this and your USB device doesn't connect, the most
44// common issues are the RCC config and vbus_detection 44// common issues are the RCC config and vbus_detection
45// 45//
46// 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 46// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
47// for more information. 47// for more information.
48#[embassy_executor::main] 48#[embassy_executor::main]
49async fn main(spawner: Spawner) { 49async fn main(spawner: Spawner) {
diff --git a/examples/stm32f4/src/bin/usb_hid_keyboard.rs b/examples/stm32f4/src/bin/usb_hid_keyboard.rs
index 537ff63ea..1270995c4 100644
--- a/examples/stm32f4/src/bin/usb_hid_keyboard.rs
+++ b/examples/stm32f4/src/bin/usb_hid_keyboard.rs
@@ -24,7 +24,7 @@ bind_interrupts!(struct Irqs {
24// If you are trying this and your USB device doesn't connect, the most 24// If you are trying this and your USB device doesn't connect, the most
25// common issues are the RCC config and vbus_detection 25// common issues are the RCC config and vbus_detection
26// 26//
27// 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 27// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
28// for more information. 28// for more information.
29#[embassy_executor::main] 29#[embassy_executor::main]
30async fn main(_spawner: Spawner) { 30async fn main(_spawner: Spawner) {
diff --git a/examples/stm32f4/src/bin/usb_hid_mouse.rs b/examples/stm32f4/src/bin/usb_hid_mouse.rs
index df4b7426c..45136f965 100644
--- a/examples/stm32f4/src/bin/usb_hid_mouse.rs
+++ b/examples/stm32f4/src/bin/usb_hid_mouse.rs
@@ -21,7 +21,7 @@ bind_interrupts!(struct Irqs {
21// If you are trying this and your USB device doesn't connect, the most 21// If you are trying this and your USB device doesn't connect, the most
22// common issues are the RCC config and vbus_detection 22// common issues are the RCC config and vbus_detection
23// 23//
24// 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 24// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
25// for more information. 25// for more information.
26#[embassy_executor::main] 26#[embassy_executor::main]
27async fn main(_spawner: Spawner) { 27async fn main(_spawner: Spawner) {
diff --git a/examples/stm32f4/src/bin/usb_raw.rs b/examples/stm32f4/src/bin/usb_raw.rs
index 1452e7c5f..b2d706208 100644
--- a/examples/stm32f4/src/bin/usb_raw.rs
+++ b/examples/stm32f4/src/bin/usb_raw.rs
@@ -72,7 +72,7 @@ bind_interrupts!(struct Irqs {
72// If you are trying this and your USB device doesn't connect, the most 72// If you are trying this and your USB device doesn't connect, the most
73// common issues are the RCC config and vbus_detection 73// common issues are the RCC config and vbus_detection
74// 74//
75// 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 75// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
76// for more information. 76// for more information.
77#[embassy_executor::main] 77#[embassy_executor::main]
78async fn main(_spawner: Spawner) { 78async fn main(_spawner: Spawner) {
diff --git a/examples/stm32f4/src/bin/usb_serial.rs b/examples/stm32f4/src/bin/usb_serial.rs
index b2bd390b6..328b5effe 100644
--- a/examples/stm32f4/src/bin/usb_serial.rs
+++ b/examples/stm32f4/src/bin/usb_serial.rs
@@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
19// If you are trying this and your USB device doesn't connect, the most 19// If you are trying this and your USB device doesn't connect, the most
20// common issues are the RCC config and vbus_detection 20// common issues are the RCC config and vbus_detection
21// 21//
22// 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 22// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
23// for more information. 23// for more information.
24#[embassy_executor::main] 24#[embassy_executor::main]
25async fn main(_spawner: Spawner) { 25async fn main(_spawner: Spawner) {
diff --git a/examples/stm32f7/src/bin/usb_serial.rs b/examples/stm32f7/src/bin/usb_serial.rs
index 0e5cc7c5c..1906b28ed 100644
--- a/examples/stm32f7/src/bin/usb_serial.rs
+++ b/examples/stm32f7/src/bin/usb_serial.rs
@@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
19// If you are trying this and your USB device doesn't connect, the most 19// If you are trying this and your USB device doesn't connect, the most
20// common issues are the RCC config and vbus_detection 20// common issues are the RCC config and vbus_detection
21// 21//
22// 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 22// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
23// for more information. 23// for more information.
24#[embassy_executor::main] 24#[embassy_executor::main]
25async fn main(_spawner: Spawner) { 25async fn main(_spawner: Spawner) {
diff --git a/examples/stm32h7/src/bin/usb_serial.rs b/examples/stm32h7/src/bin/usb_serial.rs
index 1c50fc1c8..65ae597d4 100644
--- a/examples/stm32h7/src/bin/usb_serial.rs
+++ b/examples/stm32h7/src/bin/usb_serial.rs
@@ -18,7 +18,7 @@ bind_interrupts!(struct Irqs {
18// If you are trying this and your USB device doesn't connect, the most 18// If you are trying this and your USB device doesn't connect, the most
19// common issues are the RCC config and vbus_detection 19// common issues are the RCC config and vbus_detection
20// 20//
21// 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 21// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
22// for more information. 22// for more information.
23#[embassy_executor::main] 23#[embassy_executor::main]
24async fn main(_spawner: Spawner) { 24async fn main(_spawner: Spawner) {
diff --git a/examples/stm32l4/src/bin/usb_serial.rs b/examples/stm32l4/src/bin/usb_serial.rs
index ed9671d0f..c3b1211d8 100644
--- a/examples/stm32l4/src/bin/usb_serial.rs
+++ b/examples/stm32l4/src/bin/usb_serial.rs
@@ -19,7 +19,7 @@ bind_interrupts!(struct Irqs {
19// If you are trying this and your USB device doesn't connect, the most 19// If you are trying this and your USB device doesn't connect, the most
20// common issues are the RCC config and vbus_detection 20// common issues are the RCC config and vbus_detection
21// 21//
22// 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 22// See https://embassy.dev/book/#_the_usb_examples_are_not_working_on_my_board_is_there_anything_else_i_need_to_configure
23// for more information. 23// for more information.
24#[embassy_executor::main] 24#[embassy_executor::main]
25async fn main(_spawner: Spawner) { 25async fn main(_spawner: Spawner) {