aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThales Fragoso <[email protected]>2021-05-20 22:17:53 -0300
committerThales Fragoso <[email protected]>2021-05-21 20:20:17 -0300
commitf5860c3c4c8b0d8a11cc73f42953047c7117fc93 (patch)
treed179c7387c419299056eb4da8ad181ef9495e766
parent1689ab2f8bfc20bbdc9fd37b12b77bde338ccdb5 (diff)
Fix import on SDMMC
-rw-r--r--embassy-stm32/src/sdmmc/v2.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-stm32/src/sdmmc/v2.rs b/embassy-stm32/src/sdmmc/v2.rs
index d1d485c29..8e6f3d43d 100644
--- a/embassy-stm32/src/sdmmc/v2.rs
+++ b/embassy-stm32/src/sdmmc/v2.rs
@@ -1502,6 +1502,7 @@ macro_rules! impl_sdmmc_pin {
1502#[cfg(feature = "sdmmc-rs")] 1502#[cfg(feature = "sdmmc-rs")]
1503mod sdmmc_rs { 1503mod sdmmc_rs {
1504 use super::*; 1504 use super::*;
1505 use core::future::Future;
1505 use embedded_sdmmc::{Block, BlockCount, BlockDevice, BlockIdx}; 1506 use embedded_sdmmc::{Block, BlockCount, BlockDevice, BlockIdx};
1506 1507
1507 impl<'d, T: Instance, P: Pins<T>> BlockDevice for Sdmmc<'d, T, P> { 1508 impl<'d, T: Instance, P: Pins<T>> BlockDevice for Sdmmc<'d, T, P> {