stm32: add usb_hid_mouse example

Signed-off-by: Vo Trung Chi <chi.votrung@vn.bosch.com>
This commit is contained in:
Vo Trung Chi 2024-03-07 00:59:49 +07:00
parent 61653229b6
commit 5d53348c76

View File

@ -119,9 +119,9 @@ async fn main(_spawner: Spawner) {
}
};
// Run everything concurrently.
// If we had made everything `'static` above instead, we could do this using separate tasks instead.
join(usb_fut, hid_fut).await;
// Run everything concurrently.
// If we had made everything `'static` above instead, we could do this using separate tasks instead.
join(usb_fut, hid_fut).await;
}
struct MyRequestHandler {}