Skip to content

Commit 09e3633

Browse files
committed
extmod/vfs_fat_misc: Fix cc3200 port build.
1 parent 9fb36af commit 09e3633

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

extmod/vfs_fat_misc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
*/
2626

2727
#include "py/mpconfig.h"
28-
#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT
28+
// *_ADHOC part is for cc3200 port which doesn't use general uPy
29+
// infrastructure and instead duplicates code. TODO: Resolve.
30+
#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
2931

3032
#include <string.h>
3133
#include "py/nlr.h"

0 commit comments

Comments
 (0)