aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-stm32/src/i2c/v1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/i2c/v1.rs b/embassy-stm32/src/i2c/v1.rs
index cf6011c26..72cc46c04 100644
--- a/embassy-stm32/src/i2c/v1.rs
+++ b/embassy-stm32/src/i2c/v1.rs
@@ -301,7 +301,7 @@ mod eh1 {
301 } 301 }
302 } 302 }
303 303
304 impl<'d, T: Instance, TXDMA: TxDma<T>, RXDMA: RxDma<T>> embedded_hal_1::i2c::ErrorType for I2c<'d, T, TXDMA, RXDMA> { 304 impl<'d, T: Instance> embedded_hal_1::i2c::ErrorType for I2c<'d, T> {
305 type Error = Error; 305 type Error = Error;
306 } 306 }
307 307