Rename prelude use statements to match crate name

Signed-off-by: Daniel Egger <daniel@eggers-club.de>
This commit is contained in:
Daniel Egger 2018-12-18 10:09:57 +01:00
parent 22c457c097
commit 84b70c78f7
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
pub use embedded_hal::prelude::*;
pub use crate::gpio::GpioExt as _stm32f042_hal_gpio_GpioExt;
pub use crate::rcc::RccExt as _stm32f042_hal_rcc_RccExt;
pub use crate::time::U32Ext as _stm32f042_hal_time_U32Ext;
pub use crate::gpio::GpioExt as _stm32f0xx_hal_gpio_GpioExt;
pub use crate::rcc::RccExt as _stm32f0xx_hal_rcc_RccExt;
pub use crate::time::U32Ext as _stm32f0xx_hal_time_U32Ext;