From 2e155bcc3103443e7eb6d5c514394f691c431b30 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 7 Aug 2017 16:20:19 -0700 Subject: shared-bindings: Add stub documentation of storage.VfsFat so other docs can link to it. --- shared-bindings/storage/__init__.c | 7 +++++++ 1 file changed, 7 insertions(+) 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) }, }; -- cgit v1.2.3