modm API documentation
|
lbuild module: modm:fatfs
FatFs is a generic FAT/exFAT filesystem module for small embedded systems.
See http://elm-chan.org/fsw/ff/00index_e.html.
This module generates a ffconf.h
config file for modm integration with these settings:
FF_FS_NORTC = 1
: modm does not provide an accurate RTC timekeeping method, you must implement that yourself.ff_memalloc
/ff_memfree
: Forwarded to malloc
and free
as implemented by the modm:platform:heap
moduleTo configure FatFs for your project, create a <ffconf_local.h>
file, which is included at the beginning of the config, thus overwriting the default settings. Please see the modm/ext/fatfs/ffconf.h
file for the available configuration options and their default values.
Example <ffconf_local.h>
configuration: