rp-sdio 0.1.0

simple crate to interface between a disk and it's partitions
Documentation
1
2
3
4
5
6
7
8
9
10
//! Crate used to interface with SD cards via SDIO
//!
//! *currently in the alpha phase: works but missing important features and
//! is poorly optimised. future updates guarentee breaking changes.*

#![no_std]

pub mod errors;
pub mod registers;
pub mod sdio;