aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaor malka <[email protected]>2025-08-24 22:00:08 -0400
committermaor malka <[email protected]>2025-08-24 22:00:08 -0400
commite5d4ef42699859fbcbcee083842195c8d4f7b8b0 (patch)
tree769a888715c43a9ae9468ebc1823029cf6cfa845
parent135070040688a4e5b50b84718526b630714d1a13 (diff)
stm32/adc/v3: build formatting fixes
-rw-r--r--embassy-stm32/src/adc/v3.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-stm32/src/adc/v3.rs b/embassy-stm32/src/adc/v3.rs
index bc5b80ccd..03864b171 100644
--- a/embassy-stm32/src/adc/v3.rs
+++ b/embassy-stm32/src/adc/v3.rs
@@ -1,11 +1,11 @@
1use core::marker::PhantomData;
2use core::sync::atomic::{compiler_fence, Ordering};
3
1use cfg_if::cfg_if; 4use cfg_if::cfg_if;
2use pac::adc::vals::Dmacfg; 5use pac::adc::vals::Dmacfg;
3#[cfg(adc_v3)] 6#[cfg(adc_v3)]
4use pac::adc::vals::{OversamplingRatio, OversamplingShift, Rovsm, Trovs}; 7use pac::adc::vals::{OversamplingRatio, OversamplingShift, Rovsm, Trovs};
5 8
6use core::marker::PhantomData;
7use core::sync::atomic::{compiler_fence, Ordering};
8
9use super::{ 9use super::{
10 blocking_delay_us, Adc, AdcChannel, AnyAdcChannel, Instance, Resolution, RxDma, SampleTime, SealedAdcChannel, 10 blocking_delay_us, Adc, AdcChannel, AnyAdcChannel, Instance, Resolution, RxDma, SampleTime, SealedAdcChannel,
11}; 11};