Fix all warnings on embassy-rp and embassy-rp-examples and

embassy-std-examples
This commit is contained in:
Rukai
2021-05-18 22:11:20 +10:00
committed by Lucas Kent
parent 58723a8e76
commit 2363a019e2
8 changed files with 10 additions and 11 deletions

View File

@@ -1,11 +1,11 @@
use core::sync::atomic::{compiler_fence, Ordering};
use crate::fmt::{assert, *};
use crate::fmt::assert;
use crate::pac::dma::vals;
use crate::{pac, peripherals};
pub struct Dma<T: Channel> {
inner: T,
_inner: T,
}
impl<T: Channel> Dma<T> {