ufat
ufat copied to clipboard
Low-memory feature-complete VFAT implementation
alloc_cluster() just ignores read errors, trying next cluster until it either succeeds (finds an empty one) or runs out of clusters (after checking all of them). A large volume may...
In our application we are using your ufat library (via [my RTOS](https://github.com/DISTORTEC)). In one of the devices the SD card got damaged - it seems that it is able to...
Compiling the code with `-fstack-usage` shows that some of the functions use a lot of stack - for example `ufat_dir_find_path()` is the most stack-hungry one, using 848 B (note -...