8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 509d522 commit 2e155bcCopy full SHA for 2e155bc
shared-bindings/storage/__init__.c
@@ -123,6 +123,13 @@ STATIC const mp_rom_map_elem_t storage_module_globals_table[] = {
123
{ MP_OBJ_NEW_QSTR(MP_QSTR_mount), MP_ROM_PTR(&storage_mount_obj) },
124
{ MP_OBJ_NEW_QSTR(MP_QSTR_umount), MP_ROM_PTR(&storage_umount_obj) },
125
{ MP_OBJ_NEW_QSTR(MP_QSTR_remount), MP_ROM_PTR(&storage_remount_obj) },
126
+
127
+ //| .. class:: VfsFat(block_device)
128
+ //|
129
+ //| Create a new VfsFat filesystem around the given block device.
130
131
+ //| :param block_device: Block device the the filesystem lives on
132
133
{ MP_OBJ_NEW_QSTR(MP_QSTR_VfsFat), MP_ROM_PTR(&mp_fat_vfs_type) },
134
};
135
0 commit comments