2022-03-16 16:52:27 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2022-04-02 02:35:06 +00:00
|
|
|
use defmt::*;
|
2022-07-29 19:58:35 +00:00
|
|
|
use embassy_executor::executor::Spawner;
|
2022-03-16 17:09:37 +00:00
|
|
|
use embassy_stm32::sdmmc::Sdmmc;
|
2022-07-10 22:36:10 +00:00
|
|
|
use embassy_stm32::time::mhz;
|
2022-03-16 16:52:27 +00:00
|
|
|
use embassy_stm32::{interrupt, Config, Peripherals};
|
2022-06-12 20:15:44 +00:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2022-03-16 16:52:27 +00:00
|
|
|
|
|
|
|
fn config() -> Config {
|
|
|
|
let mut config = Config::default();
|
2022-07-10 22:36:10 +00:00
|
|
|
config.rcc.sys_ck = Some(mhz(48));
|
2022-03-16 16:52:27 +00:00
|
|
|
config
|
|
|
|
}
|
|
|
|
|
2022-07-29 19:58:35 +00:00
|
|
|
#[embassy_executor::main(config = "config()")]
|
2022-03-16 16:52:27 +00:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) -> ! {
|
2022-03-16 18:20:39 +00:00
|
|
|
info!("Hello World!");
|
2022-03-16 16:52:27 +00:00
|
|
|
|
|
|
|
let irq = interrupt::take!(SDIO);
|
|
|
|
|
2022-07-22 23:29:35 +00:00
|
|
|
let mut sdmmc = Sdmmc::new_4bit(
|
2022-03-16 18:20:39 +00:00
|
|
|
p.SDIO,
|
|
|
|
irq,
|
|
|
|
p.DMA2_CH3,
|
2022-07-22 23:29:35 +00:00
|
|
|
p.PC12,
|
|
|
|
p.PD2,
|
|
|
|
p.PC8,
|
|
|
|
p.PC9,
|
|
|
|
p.PC10,
|
|
|
|
p.PC11,
|
|
|
|
Default::default(),
|
2022-03-16 18:20:39 +00:00
|
|
|
);
|
2022-03-16 16:52:27 +00:00
|
|
|
|
2022-03-16 21:55:07 +00:00
|
|
|
// Should print 400kHz for initialization
|
|
|
|
info!("Configured clock: {}", sdmmc.clock().0);
|
2022-03-16 16:52:27 +00:00
|
|
|
|
2022-07-10 22:36:10 +00:00
|
|
|
unwrap!(sdmmc.init_card(mhz(25)).await);
|
2022-03-16 16:52:27 +00:00
|
|
|
|
|
|
|
let card = unwrap!(sdmmc.card());
|
|
|
|
|
|
|
|
info!("Card: {:#?}", Debug2Format(card));
|
|
|
|
|
|
|
|
loop {}
|
|
|
|
}
|