diff options
| author | Ayke van Laethem | 2017-11-12 22:40:32 +0100 |
|---|---|---|
| committer | Damien George | 2018-07-18 17:12:25 +1000 |
| commit | 7418795fdfd12c30fbb10ae490a0247cf988c78c (patch) | |
| tree | 0bb4902a42c8cfd6cb38b3596766fc2defdbe74a | |
| parent | cc158f98fe81180869d22b73bc6102c75829fceb (diff) | |
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).
| -rw-r--r-- | ports/nrf/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/mpconfigport.h b/ports/nrf/mpconfigport.h index 46ad66911..de9ac036b 100644 --- a/ports/nrf/mpconfigport.h +++ b/ports/nrf/mpconfigport.h @@ -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) |
