Skip to content

Commit ea6d7e8

Browse files
committed
fmt
1 parent 9875ba8 commit ea6d7e8

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

examples/hrtim/adc-trigger.rs

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,18 @@
55
use cortex_m_rt::entry;
66
use panic_probe as _;
77
use stm32_hrtim::{
8-
compare_register::HrCompareRegister, output::HrOutput, timer::HrTimer,
9-
HrParts, HrPwmAdvExt, Pscl4,
8+
compare_register::HrCompareRegister, output::HrOutput, timer::HrTimer, HrParts, HrPwmAdvExt,
9+
Pscl4,
1010
};
1111
use stm32g4xx_hal::{
12-
adc::{self, AdcClaim, ClockSource, Temperature, Vref}, delay::SYSTDelayExt, dma::{self, channel::DMAExt, config::DmaConfig, TransferExt}, gpio::GpioExt, hrtim::{HrControltExt, HrPwmBuilderExt}, pwr::PwrExt, rcc::{self, RccExt}, stm32::{CorePeripherals, Peripherals}
12+
adc::{self, AdcClaim, ClockSource, Temperature, Vref},
13+
delay::SYSTDelayExt,
14+
dma::{self, channel::DMAExt, config::DmaConfig, TransferExt},
15+
gpio::GpioExt,
16+
hrtim::{HrControltExt, HrPwmBuilderExt},
17+
pwr::PwrExt,
18+
rcc::{self, RccExt},
19+
stm32::{CorePeripherals, Peripherals},
1320
};
1421

1522
#[entry]

0 commit comments

Comments
 (0)