Rename prelude use statements to match crate name
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
This commit is contained in:
parent
22c457c097
commit
84b70c78f7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue