diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-10 00:50:07 +0200 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-10 00:50:07 +0200 |
| commit | 5b85a86ce3aaabac49083e2699c90d011a1e4de3 (patch) | |
| tree | 9f97817e6fcc2945171e00a051ef2048afacdea7 /extmod/fsusermount.h | |
| parent | a2e5e4c3d8e470f5bcc8a827b71f5670acd4851d (diff) | |
extmod/fsusermount: Introduce separate mkfs() function.
Per the previously discussed plan. mount() still stays backward-compatible,
and new mkfs() is rought and takes more args than needed. But is a step
in a forward direction.
Diffstat (limited to 'extmod/fsusermount.h')
| -rw-r--r-- | extmod/fsusermount.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extmod/fsusermount.h b/extmod/fsusermount.h index a6f54b878..c141ecb99 100644 --- a/extmod/fsusermount.h +++ b/extmod/fsusermount.h @@ -34,4 +34,5 @@ typedef struct _fs_user_mount_t { FATFS fatfs; } fs_user_mount_t; -MP_DECLARE_CONST_FUN_OBJ(pyb_mount_obj); +MP_DECLARE_CONST_FUN_OBJ(fsuser_mount_obj); +MP_DECLARE_CONST_FUN_OBJ(fsuser_mkfs_obj); |
