From 09e363316f90427bc59cc13fb4d1200ab207ca82 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 29 Feb 2016 01:15:19 +0200 Subject: [PATCH] extmod/vfs_fat_misc: Fix cc3200 port build. --- extmod/vfs_fat_misc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c index 3aee03ff2..145b624c2 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 #include "py/nlr.h"