aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-driver/src/lib.rs
diff options
context:
space:
mode:
authorMatteo Meluzzi <[email protected]>2025-10-02 10:53:31 +0200
committerMatteo Meluzzi <[email protected]>2025-10-02 10:53:31 +0200
commit828a8df18d04877df1f55f04354980b28ff2f2f8 (patch)
treec4fa405f5eba7a14b6d435d6cc746c9e0dc52632 /embassy-usb-driver/src/lib.rs
parent176649e71ad442ca9856af6c11989b0b2f228c4b (diff)
parent194a721d0eab929a2af0a2a4e45ca8e70e0d3f0a (diff)
Merge branch 'main' into 17-add-support-for-boot-protocol
Diffstat (limited to 'embassy-usb-driver/src/lib.rs')
-rw-r--r--embassy-usb-driver/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-usb-driver/src/lib.rs b/embassy-usb-driver/src/lib.rs
index 3ad96c61d..59845a268 100644
--- a/embassy-usb-driver/src/lib.rs
+++ b/embassy-usb-driver/src/lib.rs
@@ -205,7 +205,7 @@ pub trait Bus {
205 /// 205 ///
206 /// # Errors 206 /// # Errors
207 /// 207 ///
208 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support 208 /// * [`Unsupported`] - This UsbBus implementation doesn't support
209 /// simulating a disconnect or it has not been enabled at creation time. 209 /// simulating a disconnect or it has not been enabled at creation time.
210 fn force_reset(&mut self) -> Result<(), Unsupported> { 210 fn force_reset(&mut self) -> Result<(), Unsupported> {
211 Err(Unsupported) 211 Err(Unsupported)
@@ -215,7 +215,7 @@ pub trait Bus {
215 /// 215 ///
216 /// # Errors 216 /// # Errors
217 /// 217 ///
218 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support 218 /// * [`Unsupported`] - This UsbBus implementation doesn't support
219 /// remote wakeup or it has not been enabled at creation time. 219 /// remote wakeup or it has not been enabled at creation time.
220 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; 220 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>;
221} 221}