summaryrefslogtreecommitdiff
path: root/shared-bindings/storage/__init__.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/storage/__init__.c')
-rw-r--r--shared-bindings/storage/__init__.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/shared-bindings/storage/__init__.c b/shared-bindings/storage/__init__.c
index b8d3e69fc..993b87f32 100644
--- a/shared-bindings/storage/__init__.c
+++ b/shared-bindings/storage/__init__.c
@@ -123,6 +123,13 @@ STATIC const mp_rom_map_elem_t storage_module_globals_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_mount), MP_ROM_PTR(&storage_mount_obj) },
{ MP_OBJ_NEW_QSTR(MP_QSTR_umount), MP_ROM_PTR(&storage_umount_obj) },
{ MP_OBJ_NEW_QSTR(MP_QSTR_remount), MP_ROM_PTR(&storage_remount_obj) },
+
+ //| .. class:: VfsFat(block_device)
+ //|
+ //| Create a new VfsFat filesystem around the given block device.
+ //|
+ //| :param block_device: Block device the the filesystem lives on
+ //|
{ MP_OBJ_NEW_QSTR(MP_QSTR_VfsFat), MP_ROM_PTR(&mp_fat_vfs_type) },
};