From 4714c70d18338f224309f81034401110fffc9f6b Mon Sep 17 00:00:00 2001 From: Matous Hybl Date: Thu, 9 May 2019 20:33:45 +0200 Subject: [PATCH] Remove STM32F030 from devices that have I2C1 available on pins PA11 and PA12. --- src/i2c.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i2c.rs b/src/i2c.rs index 60c738e..5ad14c7 100644 --- a/src/i2c.rs +++ b/src/i2c.rs @@ -72,7 +72,7 @@ i2c_pins! { sda => [gpioa::PA10>], } } -#[cfg(any(feature = "stm32f030", feature = "stm32f042", feature = "stm32f048"))] +#[cfg(any(feature = "stm32f042", feature = "stm32f048"))] i2c_pins! { I2C1 => { scl => [gpioa::PA11>],