You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
540 B
10 lines
540 B
pub use embedded_hal::prelude::*; |
|
// TODO for some reason, watchdog isn't in the embedded_hal prelude |
|
pub use embedded_hal::watchdog::Watchdog as _stm32f0xx_hal_embedded_hal_watchdog_Watchdog; |
|
pub use embedded_hal::watchdog::WatchdogEnable as _stm32f0xx_hal_embedded_hal_watchdog_WatchdogEnable; |
|
|
|
pub use embedded_hal::adc::OneShot as _embedded_hal_adc_OneShot; |
|
|
|
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;
|
|
|