There was an error while loading. Please reload this page.
1 parent 7e0f9ad commit 709dcbdCopy full SHA for 709dcbd
1 file changed
extmod/modvfs.c
@@ -29,10 +29,22 @@
29
#if MICROPY_PY_VFS
30
31
#include "extmod/vfs.h"
32
+
33
+#if MICROPY_VFS_FAT
34
#include "extmod/vfs_fat.h"
35
+#endif
36
37
+#if MICROPY_VFS_LFS1 || MICROPY_VFS_LFS2
38
#include "extmod/vfs_lfs.h"
39
40
41
+#if MICROPY_VFS_POSIX
42
#include "extmod/vfs_posix.h"
43
44
45
+#if MICROPY_VFS_ROM
46
#include "extmod/vfs_rom.h"
47
48
49
#if !MICROPY_VFS
50
#error "MICROPY_PY_VFS requires MICROPY_VFS"
0 commit comments