nrf: Disable FAT/VFS by default.

Most boards don't have an SD card so it makes no sense to have it
enabled. It can be enabled per board (mpconfigboard.h).
This commit is contained in:
Ayke van Laethem 2017-11-12 22:40:32 +01:00 committed by Damien George
parent cc158f98fe
commit 7418795fdf

View File

@ -31,7 +31,7 @@
// options to control how MicroPython is built
#ifndef MICROPY_VFS
#define MICROPY_VFS (1)
#define MICROPY_VFS (0)
#endif
#define MICROPY_VFS_FAT (MICROPY_VFS)
#define MICROPY_ALLOC_PATH_MAX (512)