You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// register the callback for the storage mount changed event.
654
-
tinyusb_msc_sdmmc_config_t config_sdmmc = {
655
-
.card = card,
656
-
.callback_mount_changed = nullptr,
657
-
.callback_premount_changed = nullptr,
658
-
.mount_config = {
659
-
.format_if_mount_failed = false,
660
-
.max_files = 5,
661
-
.allocation_unit_size = 2 * 1024, // sector size is 512 bytes, this should be between sector size and (128 * sector size). Larger means higher read/write performance and higher overhead for small files.
662
-
.disk_status_check_enable = false, // true if you see issues or are unmounted properly; slows down I/O
653
+
esp_vfs_fat_mount_config_t fat_mount_config = {
654
+
.format_if_mount_failed = false,
655
+
.max_files = 5,
656
+
.allocation_unit_size = 2 * 1024, // sector size is 512 bytes, this should be between sector size and (128 * sector size). Larger means higher read/write performance and higher overhead for small files.
657
+
.disk_status_check_enable = false, // true if you see issues or are unmounted properly; slows down I/O
0 commit comments