summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpconfig.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-01-27 15:10:09 +1100
committerDamien George <damien.p.george@gmail.com>2017-01-27 17:19:06 +1100
commitdcb9ea72157f1d9f3b0dc306c2c31cbd647f5ee1 (patch)
tree2c93fc3589bb3a5879d24ace7a7e55a124a90db3 /py/mpconfig.h
parent32a1138b9f66b76808906064a76c5f9533cc825c (diff)
downloadmicropython-dcb9ea72157f1d9f3b0dc306c2c31cbd647f5ee1.tar.gz
micropython-dcb9ea72157f1d9f3b0dc306c2c31cbd647f5ee1.zip
extmod: Add generic VFS sub-system.
This provides mp_vfs_XXX functions (eg mount, open, listdir) which are agnostic to the underlying filesystem type, and just require an object with the relevant filesystem-like methods (eg .mount, .open, .listidr) which can then be mounted. These mp_vfs_XXX functions would typically be used by a port to implement the "uos" module, and mp_vfs_open would be the builtin open function. This feature is controlled by MICROPY_VFS, disabled by default.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r--py/mpconfig.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h
index 3bccada11d..a924eda0c6 100644
--- a/py/mpconfig.h
+++ b/py/mpconfig.h
@@ -398,6 +398,11 @@
#define MICROPY_READER_POSIX (0)
#endif
+// Whether to use the VFS reader for importing files
+#ifndef MICROPY_READER_VFS
+#define MICROPY_READER_VFS (0)
+#endif
+
// Whether to use the FatFS reader for importing files
#ifndef MICROPY_READER_FATFS
#define MICROPY_READER_FATFS (0)
@@ -621,6 +626,11 @@ typedef double mp_float_t;
#define MICROPY_FSUSERMOUNT (0)
#endif
+// Support for generic VFS sub-system
+#ifndef MICROPY_VFS
+#define MICROPY_VFS (0)
+#endif
+
/*****************************************************************************/
/* Fine control over Python builtins, classes, modules, etc */