diff options
| author | Bruno Bousquet <[email protected]> | 2024-05-06 02:52:22 -0400 |
|---|---|---|
| committer | Bruno Bousquet <[email protected]> | 2024-05-06 02:52:22 -0400 |
| commit | 969933cb7bd8b8e41aed824afeaf12fd094a5056 (patch) | |
| tree | 76b3b7b908f74540323b376f85908107dd875543 /examples | |
| parent | 55c8d3f4743bc653c1659dc3e961df86afe7d3db (diff) | |
fix fmt for ci
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/stm32f4/src/bin/input_capture.rs | 3 |
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 | ||
| 4 | use defmt::*; | 4 | use defmt::*; |
| 5 | use embassy_executor::Spawner; | 5 | use embassy_executor::Spawner; |
| 6 | use embassy_stm32::bind_interrupts; | ||
| 7 | use embassy_stm32::gpio::{Level, Output, Pull, Speed}; | 6 | use embassy_stm32::gpio::{Level, Output, Pull, Speed}; |
| 8 | use embassy_stm32::peripherals; | ||
| 9 | use embassy_stm32::time::khz; | 7 | use embassy_stm32::time::khz; |
| 10 | use embassy_stm32::timer::input_capture::{CapturePin, InputCapture}; | 8 | use embassy_stm32::timer::input_capture::{CapturePin, InputCapture}; |
| 11 | use embassy_stm32::timer::{self, Channel}; | 9 | use embassy_stm32::timer::{self, Channel}; |
| 10 | use embassy_stm32::{bind_interrupts, peripherals}; | ||
| 12 | use embassy_time::Timer; | 11 | use embassy_time::Timer; |
| 13 | use {defmt_rtt as _, panic_probe as _}; | 12 | use {defmt_rtt as _, panic_probe as _}; |
| 14 | 13 | ||
