Found 12 other functions taking a
esp_vfs_fat_mount_config_t
argument:
Convenience function to initialize FAT filesystem in SPI flash and register it in VFS This is an all-in-one function which does the following: - finds the partition with defined partition_label. Partition label should be configured in the partition table. - initializes flash wear levelling library on top of the given partition - mounts FAT partition using FATFS library on top of flash wear levelling library - registers FATFS library with VFS, with prefix given by base_prefix variable This function is intended to make example code more compact.
Convenience function to get FAT filesystem on SD card registered in VFS This is an all-in-one function which does the following: - initializes SDMMC driver or SPI driver with configuration in host_config - initializes SD card with configuration in slot_config - mounts FAT partition on SD card using FATFS library, with configuration in mount_config - registers FATFS library with VFS, with prefix given by base_prefix variable This function is intended to make example code more compact. For real world applications, developers should implement the logic of probing SD card, locating and mounting partition, and registering FATFS in VFS, with proper error checking and handling of exceptional conditions.
Convenience function to get FAT filesystem on SD card registered in VFS This is an all-in-one function which does the following: - initializes an SPI Master device based on the SPI Master driver with configuration in slot_config, and attach it to an initialized SPI bus. - initializes SD card with configuration in host_config_input - mounts FAT partition on SD card using FATFS library, with configuration in mount_config - registers FATFS library with VFS, with prefix given by base_prefix variable This function is intended to make example code more compact. For real world applications, developers should implement the logic of probing SD card, locating and mounting partition, and registering FATFS in VFS, with proper error checking and handling of exceptional conditions.
Format FAT filesystem with given configuration
Format FAT filesystem with given configuration
Convenience function to initialize read-only FAT filesystem and register it in VFS This is an all-in-one function which does the following: - finds the partition with defined partition_label. Partition label should be configured in the partition table. - mounts FAT partition using FATFS library - registers FATFS library with VFS, with prefix given by base_prefix variable
@deprecated Please use `esp_vfs_fat_spiflash_mount_rw_wl` instead
@deprecated Please use `esp_vfs_fat_spiflash_mount_ro` instead