ESP32-Console

This commit is contained in:
2025-01-11 09:20:15 -05:00
parent ba3fda7ebc
commit ab9f82d68e
2 changed files with 1 additions and 1 deletions

View File

View File

@@ -36,7 +36,7 @@ static void initialize_filesystem(void)
};
esp_err_t err = esp_vfs_fat_spiflash_mount_rw_wl(MOUNT_PATH, "storage", &mount_config, &wl_handle);
if (err != ESP_OK) {
ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
ESP_LOGE("Console", "Failed to mount FATFS (%s)", esp_err_to_name(err));
return;
}
}