diff options
| author | Damien George <damien.p.george@gmail.com> | 2018-06-06 14:31:29 +1000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2018-06-06 14:33:42 +1000 |
| commit | a8b9e71ac13c1cfad7bda7449683ff4b69886df0 (patch) | |
| tree | bf6135ff8a4f9e9686231b57c38d46962b23149f /py | |
| parent | c117effddd1f9ffd902a9712cf0ae7413696dc66 (diff) | |
py/mpconfig.h: Add default MICROPY_VFS_FAT config value.
At least to document it's existence.
Diffstat (limited to 'py')
| -rw-r--r-- | py/mpconfig.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index dc0fc5d40..0ea087fb3 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -686,6 +686,11 @@ typedef double mp_float_t; #define MICROPY_VFS_POSIX (0) #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 */ |
