aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-24 15:34:44 +0000
committerGitHub <[email protected]>2023-11-24 15:34:44 +0000
commite8ff5a2baf217ac7e52f119c0d17a9826ad60067 (patch)
tree45b7ca168d54d8de0d7cbf44836b25725a040d0a
parent738971938a392904612258eefd51c9f0e452b119 (diff)
parent4f8c79c9118d826b85755fa903df5d1a4aea5b18 (diff)
Merge pull request #2215 from andresv/stm32-allow-eha-without-time
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::*;