diff options
Diffstat (limited to 'embassy-usb-driver/src/lib.rs')
| -rw-r--r-- | embassy-usb-driver/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-usb-driver/src/lib.rs b/embassy-usb-driver/src/lib.rs index 0a76ba6fb..9300ff812 100644 --- a/embassy-usb-driver/src/lib.rs +++ b/embassy-usb-driver/src/lib.rs | |||
| @@ -184,7 +184,7 @@ pub trait Bus { | |||
| 184 | /// | 184 | /// |
| 185 | /// # Errors | 185 | /// # Errors |
| 186 | /// | 186 | /// |
| 187 | /// * [`Unsupported`](crate::driver::Unsupported) - This UsbBus implementation doesn't support | 187 | /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support |
| 188 | /// simulating a disconnect or it has not been enabled at creation time. | 188 | /// simulating a disconnect or it has not been enabled at creation time. |
| 189 | fn force_reset(&mut self) -> Result<(), Unsupported> { | 189 | fn force_reset(&mut self) -> Result<(), Unsupported> { |
| 190 | Err(Unsupported) | 190 | Err(Unsupported) |
| @@ -194,7 +194,7 @@ pub trait Bus { | |||
| 194 | /// | 194 | /// |
| 195 | /// # Errors | 195 | /// # Errors |
| 196 | /// | 196 | /// |
| 197 | /// * [`Unsupported`](crate::driver::Unsupported) - This UsbBus implementation doesn't support | 197 | /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support |
| 198 | /// remote wakeup or it has not been enabled at creation time. | 198 | /// remote wakeup or it has not been enabled at creation time. |
| 199 | async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; | 199 | async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; |
| 200 | } | 200 | } |
