diff options
| author | Bob McWhirter <[email protected]> | 2021-07-08 16:06:43 -0400 |
|---|---|---|
| committer | Bob McWhirter <[email protected]> | 2021-07-13 10:09:35 -0400 |
| commit | 811ed18922104f36580ab5d9d32555578a5fb9c6 (patch) | |
| tree | 2fe7cb53f7ab708f3c126c258495b90551ba3677 | |
| parent | 30a1d9bf933831cc310e1d1eb719d0ec7f431099 (diff) | |
Add a missing 'use' for dma_v2.
| -rw-r--r-- | embassy-stm32/src/dma/v2.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-stm32/src/dma/v2.rs b/embassy-stm32/src/dma/v2.rs index 5080776fb..cec8fe877 100644 --- a/embassy-stm32/src/dma/v2.rs +++ b/embassy-stm32/src/dma/v2.rs | |||
| @@ -2,6 +2,7 @@ use core::task::Poll; | |||
| 2 | 2 | ||
| 3 | use crate::dma_traits::{ReadDma, WriteDma}; | 3 | use crate::dma_traits::{ReadDma, WriteDma}; |
| 4 | use atomic_polyfill::{AtomicU8, Ordering}; | 4 | use atomic_polyfill::{AtomicU8, Ordering}; |
| 5 | use core::future::Future; | ||
| 5 | use embassy::interrupt::{Interrupt, InterruptExt}; | 6 | use embassy::interrupt::{Interrupt, InterruptExt}; |
| 6 | use embassy::util::AtomicWaker; | 7 | use embassy::util::AtomicWaker; |
| 7 | use futures::future::poll_fn; | 8 | use futures::future::poll_fn; |
