FullFAT 1.1.0 is coming very soon. There have been some huge changes since the 1.0.x series. I’ve tried to ensure that all API’s remain the same, however some have changed their behaviour slightly, to ensure that FullFAT works more consistently. Here is a list of the changes so far:
- Correct Error Checking
- All Errors flow right back to the API’s, this means that they must be checked for values < 0.
- Huge Performance Gains on Directory traversal. (1000x improvement on recursive operations). (40x improvement on dir listing).
- FF_FindFirst() and FF_FindNext() now accept wildCards. (This beviour can be disabled by commenting FF_FINDAPI_ALLOW_WILDCARDS in ff_config.h out).
Behaviour of FF_FindFirst() wildCards is explained in the documentation. The comments above FF_FindFirst() in ff_dir.c. - UNICODE Support. If FF_UNICODE_SUPPORT is defined in ff_config.h, and LFNs are enabled, then all API’s become UTF-16 accepting.
- New Demo’s, consistent for Windows and Linux. All examples now use only the public API’s, and are much simpler.
- FullFAT 1.1.x series must have at least 2 sectors of memory. (For 512byte Blocksize, it requires 1K for buffers).
This requirement is a part of the directory traversal improvements.
FullFAT 2.0.0 series will remove this requirement.
There may be some other differences not noted here, however they will appear in documentation shortly.
Expect an official release in approximately 1 or 2 weeks time. (Grab from SVN to test).
James