diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-05-17 03:01:30 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-05-17 03:16:58 +0200 |
| commit | f7858631d8cd876b41f02f2f4d6613b6d34bc68a (patch) | |
| tree | 11bcf1b7392893efd901bf1e4fe513d90ec75544 /embassy-rp/src/dma.rs | |
| parent | cd0d3c4b0da528a10c9ca510e5863bc8779fd28f (diff) | |
stm32: fix build, add ci
Diffstat (limited to 'embassy-rp/src/dma.rs')
| -rw-r--r-- | embassy-rp/src/dma.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/embassy-rp/src/dma.rs b/embassy-rp/src/dma.rs index 73be6d76c..60c1b8809 100644 --- a/embassy-rp/src/dma.rs +++ b/embassy-rp/src/dma.rs | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | use core::sync::atomic::{compiler_fence, Ordering}; | 1 | use core::sync::atomic::{compiler_fence, Ordering}; |
| 2 | 2 | ||
| 3 | use defmt::{assert, *}; | 3 | use crate::fmt::{assert, *}; |
| 4 | 4 | use crate::pac::dma::vals; | |
| 5 | use crate::{pac, peripherals}; | 5 | use crate::{pac, peripherals}; |
| 6 | use pac::dma::vals; | ||
| 7 | 6 | ||
| 8 | pub struct Dma<T: Channel> { | 7 | pub struct Dma<T: Channel> { |
| 9 | inner: T, | 8 | inner: T, |
