Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
0fb27888
Commit
0fb27888
authored
Jan 29, 2017
by
Damien George
Browse files
extmod/vfs_fat: Remove unused function fat_vfs_listdir.
parent
196406e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
extmod/vfs_fat.h
View file @
0fb27888
...
...
@@ -59,5 +59,4 @@ mp_import_stat_t fat_vfs_import_stat(struct _fs_user_mount_t *vfs, const char *p
mp_obj_t
fatfs_builtin_open_self
(
mp_obj_t
self_in
,
mp_obj_t
path
,
mp_obj_t
mode
);
MP_DECLARE_CONST_FUN_OBJ_KW
(
mp_builtin_open_obj
);
mp_obj_t
fat_vfs_listdir
(
const
char
*
path
,
bool
is_str_type
);
mp_obj_t
fat_vfs_listdir2
(
struct
_fs_user_mount_t
*
vfs
,
const
char
*
path
,
bool
is_str_type
);
extmod/vfs_fat_misc.c
View file @
0fb27888
...
...
@@ -36,10 +36,6 @@
// TODO: actually, the core function should be ilistdir()
mp_obj_t
fat_vfs_listdir
(
const
char
*
path
,
bool
is_str_type
)
{
return
fat_vfs_listdir2
(
NULL
,
path
,
is_str_type
);
}
mp_obj_t
fat_vfs_listdir2
(
fs_user_mount_t
*
vfs
,
const
char
*
path
,
bool
is_str_type
)
{
FRESULT
res
;
FILINFO
fno
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment