stm32f1_hal/common/
prelude.rs

1pub use super::{
2    bus_device::{BusDevice, BusDeviceWithAddress},
3    dma::DmaChannel,
4    fugit::{ExtU32 as _, RateExtU32 as _},
5    i2c::{I2cBusDevice, I2cPeriph},
6    timer::{
7        GeneralTimer, PwmChannel, TimerDirection, TimerWithPwm, TimerWithPwm1Ch, TimerWithPwm2Ch,
8        TimerWithPwm3Ch, TimerWithPwm4Ch,
9    },
10    uart::{UartPeriph, UartPeriphWithDma},
11};
12pub use os_trait::prelude::*;