diff options
| author | xoviat <[email protected]> | 2025-12-11 08:00:24 -0600 |
|---|---|---|
| committer | xoviat <[email protected]> | 2025-12-11 08:00:24 -0600 |
| commit | 48100a2e8d15364f6243d3db0a649e5c90c9ffe7 (patch) | |
| tree | 7789d3f97012c14d8444df8acbaa52a6c9eb0fa5 /examples/stm32h7 | |
| parent | 32a1d0ef7ea52d3cee9959ff52d47fd13fc6b4b9 (diff) | |
sdmmc: factor out sd and add sdio mod
Diffstat (limited to 'examples/stm32h7')
| -rw-r--r-- | examples/stm32h7/src/bin/sdmmc.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/stm32h7/src/bin/sdmmc.rs b/examples/stm32h7/src/bin/sdmmc.rs index 548d0bd09..f2e5bedeb 100644 --- a/examples/stm32h7/src/bin/sdmmc.rs +++ b/examples/stm32h7/src/bin/sdmmc.rs | |||
| @@ -3,7 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | use defmt::*; | 4 | use defmt::*; |
| 5 | use embassy_executor::Spawner; | 5 | use embassy_executor::Spawner; |
| 6 | use embassy_stm32::sdmmc::{CmdBlock, Sdmmc, StorageDevice}; | 6 | use embassy_stm32::sdmmc::Sdmmc; |
| 7 | use embassy_stm32::sdmmc::sd::{CmdBlock, StorageDevice}; | ||
| 7 | use embassy_stm32::time::mhz; | 8 | use embassy_stm32::time::mhz; |
| 8 | use embassy_stm32::{Config, bind_interrupts, peripherals, sdmmc}; | 9 | use embassy_stm32::{Config, bind_interrupts, peripherals, sdmmc}; |
| 9 | use {defmt_rtt as _, panic_probe as _}; | 10 | use {defmt_rtt as _, panic_probe as _}; |
