diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-28 17:17:24 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-28 17:17:24 +0200 |
commit | cd6d189f48ccb02761ee286e1254c764ee732d7f (patch) | |
tree | 851f2f65ee10270722ffc4f245c64074e46338c0 /py | |
parent | 8a180845711d881d31876a43259092eaf03268f7 (diff) | |
download | micropython-cd6d189f48ccb02761ee286e1254c764ee732d7f.tar.gz micropython-cd6d189f48ccb02761ee286e1254c764ee732d7f.zip |
extmod/vfs_fat: Move listdir() method from stmhal for reuse.
Diffstat (limited to 'py')
-rw-r--r-- | py/py.mk | 1 | ||||
-rw-r--r-- | py/qstrdefs.h | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -174,6 +174,7 @@ PY_O_BASENAME = \ ../extmod/vfs_fat_ffconf.o \ ../extmod/vfs_fat_diskio.o \ ../extmod/vfs_fat_file.o \ + ../extmod/vfs_fat_misc.o \ ../extmod/moduos_dupterm.o \ # prepend the build destination prefix to the py object files diff --git a/py/qstrdefs.h b/py/qstrdefs.h index ac0703a52b..93eca3e823 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -718,6 +718,7 @@ Q(mount) Q(umount) Q(readonly) Q(mkfs) +Q(listdir) Q(readblocks) Q(writeblocks) Q(ioctl) |