aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Alsér <[email protected]>2022-07-06 23:56:44 +0200
committerDario Nieuwenhuis <[email protected]>2022-07-07 15:46:30 +0200
commit0fe818f4f8343668baa9e04697a7095de830f5b6 (patch)
treefc9c50d78415ddbc2eb6491e0f9950e900974a8f
parent1ed5b387f98ceae501d73675994ccb64ccd4985f (diff)
v1 fix
-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