littlefs-rust-core 0.1.0

Port of LittleFS to unsafe rust
Documentation
1
2
3
4
5
6
7
//! Block device layer. Per lfs.c lfs_bd_*, lfs_cache_*.

#[allow(clippy::module_inception)]
pub(crate) mod bd;
mod lfs_cache;

pub use lfs_cache::LfsCache;