Skip to main content

rp_sdio/
lib.rs

1//! Crate used to interface with SD cards via SDIO
2//!
3//! *currently in the alpha phase: works but missing important features and
4//! is poorly optimised. future updates guarentee breaking changes.*
5
6#![no_std]
7
8pub mod errors;
9pub mod registers;
10pub mod sdio;