py/mpconfig.h: Add default MICROPY_VFS_FAT config value.
At least to document it's existence.
This commit is contained in:
parent
c117effddd
commit
a8b9e71ac1
|
@ -686,6 +686,11 @@ typedef double mp_float_t;
|
||||||
#define MICROPY_VFS_POSIX (0)
|
#define MICROPY_VFS_POSIX (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Support for VFS FAT component, to mount a FAT filesystem within VFS
|
||||||
|
#ifndef MICROPY_VFS
|
||||||
|
#define MICROPY_VFS_FAT (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Fine control over Python builtins, classes, modules, etc */
|
/* Fine control over Python builtins, classes, modules, etc */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue