aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/stm32f4/src/bin/usb_hid_mouse.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/stm32f4/src/bin/usb_hid_mouse.rs b/examples/stm32f4/src/bin/usb_hid_mouse.rs
index 0dc5f5804..c98792880 100644
--- a/examples/stm32f4/src/bin/usb_hid_mouse.rs
+++ b/examples/stm32f4/src/bin/usb_hid_mouse.rs
@@ -119,9 +119,9 @@ async fn main(_spawner: Spawner) {
119 } 119 }
120 }; 120 };
121 121
122// Run everything concurrently. 122 // Run everything concurrently.
123// If we had made everything `'static` above instead, we could do this using separate tasks instead. 123 // If we had made everything `'static` above instead, we could do this using separate tasks instead.
124join(usb_fut, hid_fut).await; 124 join(usb_fut, hid_fut).await;
125} 125}
126 126
127struct MyRequestHandler {} 127struct MyRequestHandler {}