diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-29 01:15:19 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-29 01:15:19 +0200 |
commit | 09e363316f90427bc59cc13fb4d1200ab207ca82 (patch) | |
tree | c385dbe231b44a71fda36d33ec6100d58292d6b7 /extmod/vfs_fat_misc.c | |
parent | 9fb36af9afd0671c4a0d1d29465449ec4d1440fe (diff) | |
download | micropython-09e363316f90427bc59cc13fb4d1200ab207ca82.tar.gz micropython-09e363316f90427bc59cc13fb4d1200ab207ca82.zip |
extmod/vfs_fat_misc: Fix cc3200 port build.
Diffstat (limited to 'extmod/vfs_fat_misc.c')
-rw-r--r-- | extmod/vfs_fat_misc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c index 3aee03ff2f..145b624c2b 100644 --- a/extmod/vfs_fat_misc.c +++ b/extmod/vfs_fat_misc.c @@ -25,7 +25,9 @@ */ #include "py/mpconfig.h" -#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT +// *_ADHOC part is for cc3200 port which doesn't use general uPy +// infrastructure and instead duplicates code. TODO: Resolve. +#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC #include <string.h> #include "py/nlr.h" |