diff options
author | Damien George <damien.p.george@gmail.com> | 2017-05-05 23:36:17 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-05-10 12:13:53 +1000 |
commit | f1609bc843f1c30117cf9dfae8fb22ee36512446 (patch) | |
tree | 53fa6f85724c39e2f5056a6479d306e33a49d763 /esp8266 | |
parent | 852c215d76de082adf57d3724907ab2c8d790e78 (diff) | |
download | micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.tar.gz micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.zip |
ports: Add ilistdir in uos module.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/moduos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/moduos.c b/esp8266/moduos.c index a22fbd4df0..807d2e18a5 100644 --- a/esp8266/moduos.c +++ b/esp8266/moduos.c @@ -93,6 +93,7 @@ STATIC const mp_rom_map_elem_t os_module_globals_table[] = { #endif #if MICROPY_VFS_FAT { MP_ROM_QSTR(MP_QSTR_VfsFat), MP_ROM_PTR(&mp_fat_vfs_type) }, + { MP_ROM_QSTR(MP_QSTR_ilistdir), MP_ROM_PTR(&mp_vfs_ilistdir_obj) }, { MP_ROM_QSTR(MP_QSTR_listdir), MP_ROM_PTR(&mp_vfs_listdir_obj) }, { MP_ROM_QSTR(MP_QSTR_mkdir), MP_ROM_PTR(&mp_vfs_mkdir_obj) }, { MP_ROM_QSTR(MP_QSTR_rmdir), MP_ROM_PTR(&mp_vfs_rmdir_obj) }, |