sdmmc
=====
> A sdmmc implementation mainly focusing on embedded system with `no_std` and `async` support
Using this crate
----------------
Assuming you already have `SPI` struct which implements `sdmmc::spi::Transfer`
```rust,ignore
let mut bus = sdmmc::bus::linux::spi(&args.spi, args.cs)?;
let card = bus.init(Delay).await?;
debug!("Card: {:?}", card);
let mut sd = SD::init(bus, card).await?;
let size = Size::from_bytes(sd.num_blocks() as u64 * sd.block_size() as u64);
debug!("Size {}", size);
let options = SpidevOptions { max_speed_hz: Some(2_000_000), ..Default::default() };
let mut buffer = [0u8; 512];
sd.read(0, slice::from_mut(&mut buffer).iter_mut()).await?;
let mbr = MasterBootRecord::from_bytes(&buffer)?;
for partition in mbr.partition_table_entries().iter() {
println!("{:?}", partition);
}
Ok(())
```
Features
--------
* **async**
Enable async support
* **embedded-hal-async**
Enable embedded-hal-async support
* **std**
Use std library
* **linux-spi**
Enable linux SPI support
* **log-max-level-off**
Disable logging at compile time