aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyke van Laethem2017-11-12 22:40:32 +0100
committerDamien George2018-07-18 17:12:25 +1000
commit7418795fdfd12c30fbb10ae490a0247cf988c78c (patch)
tree0bb4902a42c8cfd6cb38b3596766fc2defdbe74a
parentcc158f98fe81180869d22b73bc6102c75829fceb (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.h2
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)