From 0bbedbd1534e8991d8e6084fde1b578d050c3dd0 Mon Sep 17 00:00:00 2001 From: Richard Meadows <962920+richardeoin@users.noreply.github.com> Date: Fri, 22 Nov 2019 20:25:08 +0000 Subject: [PATCH] Remove vestigal dualcore feature gates Were needed before [stm32-rs/285](https://github.com/stm32-rs/stm32-rs/pull/285) --- src/prelude.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/prelude.rs b/src/prelude.rs index 6931c565f..981954b3e 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -1,10 +1,8 @@ //! Prelude pub use embedded_hal::prelude::*; -#[cfg(all(feature = "device-selected", feature = "singlecore"))] pub use crate::adc::AdcExt as _stm32h7xx_hal_adc_AdcExt; pub use crate::delay::DelayExt as _stm32h7xx_hal_delay_DelayExt; -#[cfg(all(feature = "device-selected", feature = "singlecore"))] pub use crate::flash::FlashExt as _stm32h7xx_hal_flash_FlashExt; pub use crate::gpio::GpioExt as _stm32h7xx_hal_gpio_GpioExt; pub use crate::i2c::I2cExt as _stm32h7xx_hal_i2c_I2cExt;