async-embedded-sdmmc 0.3.1

Embedded sdmmc driver with async support
Documentation
pub mod command;
pub mod registers;
pub mod response;
pub mod transfer;

pub const BLOCK_SIZE: usize = 512;

#[derive(Copy, Clone, Debug)]
pub enum Card {
    SDSC(u8),
    SDHC,
}

impl Card {
    pub fn high_capacity(self) -> bool {
        match self {
            Self::SDSC(_) => false,
            _ => true,
        }
    }
}