From 063e6f96daecf8f68a538c0f1904619d84333926 Mon Sep 17 00:00:00 2001 From: Andres Oliva Date: Wed, 11 Oct 2023 23:56:21 +0200 Subject: [PATCH] Remove outdated comment --- embassy-stm32/src/i2c/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/embassy-stm32/src/i2c/mod.rs b/embassy-stm32/src/i2c/mod.rs index 204ad679..dde1a504 100644 --- a/embassy-stm32/src/i2c/mod.rs +++ b/embassy-stm32/src/i2c/mod.rs @@ -2,8 +2,6 @@ use crate::interrupt; -// I2C V2 is gated on the `time` feature because timing facilities are necessary -// to provide timeout functionality in order to prevent some APIs from stalling indefinitely #[cfg_attr(i2c_v1, path = "v1.rs")] #[cfg_attr(i2c_v2, path = "v2.rs")] mod _version;