Replace futures::future::join -> embassy_futures::join::join.

This commit is contained in:
Dario Nieuwenhuis
2022-09-22 16:48:35 +02:00
committed by Mathias
parent 2fed9f949a
commit 4f33cc5d1a
19 changed files with 20 additions and 13 deletions

View File

@ -1,9 +1,9 @@
use core::marker::PhantomData;
use embassy_embedded_hal::SetConfig;
use embassy_futures::join::join;
use embassy_hal_common::{into_ref, PeripheralRef};
pub use embedded_hal_02::spi::{Phase, Polarity};
use futures::future::join;
use crate::dma::{AnyChannel, Channel};
use crate::gpio::sealed::Pin as _;