embedded-sdmmc-rs
embedded-sdmmc-rs copied to clipboard
A SD/MMC library with FAT16/FAT32 support, suitable for Embedded Rust systems
A couple notes/questions: 1. `open_root_dir` and `open_dir` both indicate: `Open a directory. You can then read the directory entries in a random order using get_directory_entry.` But `get_directory_entry` doesn't exist in...
Added a method named `read_multi` - reads multiple contiguous blocks of a file in a single read operation, without the extra overhead of additional `data-copying` of the existing `read` method....
Firstly, thank you for this repo. It saved me a ton of time. 👍🏾 (I'm posting this as an issue as I couldn't find a discussions tab) I'd like to...
It would be a nice feature to have the option to disable the logging. For me, it gets in the way of what I actually want logged and it slows...
Hey, I'm using this library in conjunction with an SDIO SDMMC controller and a removable SDCard. I would like to be able to reinitialize this library if the user removes...
I'm using this crate in a GPS logging project https://gitlab.com/TheZoq2/sailgps/-/blob/master/src/main.rs which was working fine until yesterday when I started making some unrelated changes (https://gitlab.com/TheZoq2/sailgps/-/commit/ccd1b9b880fb7d3cfada5375badb2700b2b84094). After this change, the device seems...
This crate are great but it consist two functionalities: fat file system interface and implementation and sd/mcc card high level driver. I think we need to split this crate to...
I've updated #3 with the latest code. From the presence of `sdio.rs` it seems the intention was to provide an implementation of the SDIO transport. I don't think that's practical...