2022-03-16 18:20:39 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2022-04-02 02:35:06 +00:00
|
|
|
use defmt::*;
|
2022-03-16 18:20:39 +00:00
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy_stm32::sdmmc::Sdmmc;
|
2022-07-10 22:36:10 +00:00
|
|
|
use embassy_stm32::time::mhz;
|
2022-03-16 18:20:39 +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 18:20:39 +00:00
|
|
|
|
|
|
|
fn config() -> Config {
|
|
|
|
let mut config = Config::default();
|
2022-07-10 22:36:10 +00:00
|
|
|
config.rcc.sys_ck = Some(mhz(200));
|
2022-03-16 18:20:39 +00:00
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
#[embassy::main(config = "config()")]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) -> ! {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
|
|
|
let irq = interrupt::take!(SDMMC1);
|
|
|
|
|
|
|
|
let mut sdmmc = Sdmmc::new(
|
|
|
|
p.SDMMC1,
|
|
|
|
(p.PC12, p.PD2, p.PC8, p.PC9, p.PC10, p.PC11),
|
|
|
|
irq,
|
|
|
|
Default::default(),
|
|
|
|
);
|
|
|
|
|
2022-03-16 21:55:07 +00:00
|
|
|
// Should print 400kHz for initialization
|
|
|
|
info!("Configured clock: {}", sdmmc.clock().0);
|
2022-03-16 18:20:39 +00:00
|
|
|
|
2022-07-10 22:36:10 +00:00
|
|
|
unwrap!(sdmmc.init_card(mhz(25)).await);
|
2022-03-16 18:20:39 +00:00
|
|
|
|
|
|
|
let card = unwrap!(sdmmc.card());
|
|
|
|
|
|
|
|
info!("Card: {:#?}", Debug2Format(card));
|
|
|
|
|
|
|
|
loop {}
|
|
|
|
}
|