lib/oofatfs/ffconf.h: Allow to configure FS_EXFAT option.

Using MICROPY_FATFS_EXFAT.  Enabling this has licensing implications;
see https://www.microsoft.com/en-us/legal/intellectualproperty/mtl/exfat-licensing.aspx
pull/2828/head
Damien George 2017-01-31 12:32:24 +11:00
rodzic 80dfd65090
commit b039d93d7e
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -268,7 +268,11 @@
/ buffer in the file system object (FATFS) is used for the file data transfer. */
#ifdef MICROPY_FATFS_EXFAT
#define _FS_EXFAT (MICROPY_FATFS_EXFAT)
#else
#define _FS_EXFAT 0
#endif
/* This option switches support of exFAT file system. (0:Disable or 1:Enable)
/ When enable exFAT, also LFN needs to be enabled. (_USE_LFN >= 1)
/ Note that enabling exFAT discards C89 compatibility. */