polyfs 0.1.0

Minimal, extensible, no_std, no_alloc FAT32 file system driver for SD cards.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (C) 2026 Olivér Pirger

#![no_std]

pub mod block_device;
pub mod error;
pub mod fs;
pub mod part;

pub use error::{Error, Result};