aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f4/src/bin/input_capture.rs
diff options
context:
space:
mode:
authorBruno Bousquet <[email protected]>2024-05-06 02:52:22 -0400
committerBruno Bousquet <[email protected]>2024-05-06 02:52:22 -0400
commit969933cb7bd8b8e41aed824afeaf12fd094a5056 (patch)
tree76b3b7b908f74540323b376f85908107dd875543 /examples/stm32f4/src/bin/input_capture.rs
parent55c8d3f4743bc653c1659dc3e961df86afe7d3db (diff)
fix fmt for ci
Diffstat (limited to 'examples/stm32f4/src/bin/input_capture.rs')
-rw-r--r--examples/stm32f4/src/bin/input_capture.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/stm32f4/src/bin/input_capture.rs b/examples/stm32f4/src/bin/input_capture.rs
index 862a3103b..49de33d2b 100644
--- a/examples/stm32f4/src/bin/input_capture.rs
+++ b/examples/stm32f4/src/bin/input_capture.rs
@@ -3,12 +3,11 @@
3 3
4use defmt::*; 4use defmt::*;
5use embassy_executor::Spawner; 5use embassy_executor::Spawner;
6use embassy_stm32::bind_interrupts;
7use embassy_stm32::gpio::{Level, Output, Pull, Speed}; 6use embassy_stm32::gpio::{Level, Output, Pull, Speed};
8use embassy_stm32::peripherals;
9use embassy_stm32::time::khz; 7use embassy_stm32::time::khz;
10use embassy_stm32::timer::input_capture::{CapturePin, InputCapture}; 8use embassy_stm32::timer::input_capture::{CapturePin, InputCapture};
11use embassy_stm32::timer::{self, Channel}; 9use embassy_stm32::timer::{self, Channel};
10use embassy_stm32::{bind_interrupts, peripherals};
12use embassy_time::Timer; 11use embassy_time::Timer;
13use {defmt_rtt as _, panic_probe as _}; 12use {defmt_rtt as _, panic_probe as _};
14 13