8000 nrf/modules/uos: Add ilistdir to uos module. · micropython/micropython@e5e0553 · GitHub
[go: up one dir, main page]

Skip to content

Commit e5e0553

Browse files
committed
nrf/modules/uos: Add ilistdir to uos module.
This was missed in the initial implementation of the uos module. Signed-off-by: Damien George <damien@micropython.org>
1 parent 85f0ce2 commit e5e0553

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ports/nrf/modules/uos/moduos.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ STATIC const mp_rom_map_elem_t os_module_globals_table[] = {
145145
#if MICROPY_VFS
146146
{ MP_ROM_QSTR(MP_QSTR_chdir), MP_ROM_PTR(&mp_vfs_chdir_obj) },
147147
{ MP_ROM_QSTR(MP_QSTR_getcwd), MP_ROM_PTR(&mp_vfs_getcwd_obj) },
148+
{ MP_ROM_QSTR(MP_QSTR_ilistdir), MP_ROM_PTR(&mp_vfs_ilistdir_obj) },
148149
{ MP_ROM_QSTR(MP_QSTR_listdir), MP_ROM_PTR(&mp_vfs_listdir_obj) },
149150
{ MP_ROM_QSTR(MP_QSTR_mkdir), MP_ROM_PTR(&mp_vfs_mkdir_obj) },
150151
{ MP_ROM_QSTR(MP_QSTR_remove), MP_ROM_PTR(&mp_vfs_remove_obj) },

0 commit comments

Comments
 (0)
0