aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-driver/src
diff options
context:
space:
mode:
authorRobin Mueller <[email protected]>2025-09-23 13:55:55 +0200
committerRobin Mueller <[email protected]>2025-09-23 13:55:55 +0200
commit99febbe3a42ac05b723e6e76088d159eb0acfa5e (patch)
treec27843242e930cd6d15cdb7e3456d83df4671430 /embassy-usb-driver/src
parentde5dd10a5832b330465d93399b3a9cb761e24029 (diff)
more docs fixes
Diffstat (limited to 'embassy-usb-driver/src')
-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}