aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Vahter <[email protected]>2023-11-24 15:56:19 +0200
committerAndres Vahter <[email protected]>2023-11-24 15:56:19 +0200
commit4f8c79c9118d826b85755fa903df5d1a4aea5b18 (patch)
tree45b7ca168d54d8de0d7cbf44836b25725a040d0a
parent738971938a392904612258eefd51c9f0e452b119 (diff)
stm32 i2c: allow EHA traits without time feature
-rw-r--r--embassy-stm32/src/i2c/v2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/i2c/v2.rs b/embassy-stm32/src/i2c/v2.rs
index 062a6225f..40bcaa9bc 100644
--- a/embassy-stm32/src/i2c/v2.rs
+++ b/embassy-stm32/src/i2c/v2.rs
@@ -1187,7 +1187,7 @@ mod eh1 {
1187 } 1187 }
1188} 1188}
1189 1189
1190#[cfg(all(feature = "unstable-traits", feature = "nightly", feature = "time"))] 1190#[cfg(all(feature = "unstable-traits", feature = "nightly"))]
1191mod eha { 1191mod eha {
1192 use super::super::{RxDma, TxDma}; 1192 use super::super::{RxDma, TxDma};
1193 use super::*; 1193 use super::*;