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 /stmhal/moduos.c | |
parent | 852c215d76de082adf57d3724907ab2c8d790e78 (diff) | |
download | micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.tar.gz micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.zip |
ports: Add ilistdir in uos module.
Diffstat (limited to 'stmhal/moduos.c')
-rw-r--r-- | stmhal/moduos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/moduos.c b/stmhal/moduos.c index 2d648cb919..ece6019fbf 100644 --- a/stmhal/moduos.c +++ b/stmhal/moduos.c @@ -135,6 +135,7 @@ STATIC const mp_rom_map_elem_t os_module_globals_table[] = { { MP_ROM_QSTR(MP_QSTR_chdir), MP_ROM_PTR(&mp_vfs_chdir_obj) }, { MP_ROM_QSTR(MP_QSTR_getcwd), MP_ROM_PTR(&mp_vfs_getcwd_obj) }, + { 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_remove), MP_ROM_PTR(&mp_vfs_remove_obj) }, |