nyx: Throw a warning if SD Card in 1 bit mode

This commit is contained in:
CTCaer
2020-04-30 01:05:22 +03:00
parent ce97b97c8d
commit 96654d9620
4 changed files with 32 additions and 3 deletions

View File

@@ -25,7 +25,7 @@
static bool sd_mounted = false;
static u32 sd_mode = SD_UHS_SDR82;
u32 sd_mode_get()
u32 sd_get_mode()
{
return sd_mode;
}

View File

@@ -34,7 +34,7 @@ sdmmc_t sd_sdmmc;
sdmmc_storage_t sd_storage;
FATFS sd_fs;
u32 sd_mode_get();
u32 sd_get_mode();
int sd_init_retry(bool power_cycle);
bool sd_initialize(bool power_cycle);
bool sd_mount();