mirror of
https://github.com/erichelgeson/BlueSCSI.git
synced 2025-02-05 19:31:05 +00:00
Add sd card volume format to log.txt
This commit is contained in:
parent
c8d47218b1
commit
94a22bb45e
@ -678,6 +678,18 @@ void initFileLog(int success_mhz) {
|
|||||||
LOG_FILE.println(SDFAT_FILE_TYPE);
|
LOG_FILE.println(SDFAT_FILE_TYPE);
|
||||||
LOG_FILE.print("SdFat version: ");
|
LOG_FILE.print("SdFat version: ");
|
||||||
LOG_FILE.println(SD_FAT_VERSION_STR);
|
LOG_FILE.println(SD_FAT_VERSION_STR);
|
||||||
|
LOG_FILE.print("SD Format: ");
|
||||||
|
switch(SD.vol()->fatType()) {
|
||||||
|
case FAT_TYPE_EXFAT:
|
||||||
|
LOG_FILE.println("exFAT");
|
||||||
|
break;
|
||||||
|
case FAT_TYPE_FAT32:
|
||||||
|
LOG_FILE.print("FAT32");
|
||||||
|
case FAT_TYPE_FAT16:
|
||||||
|
LOG_FILE.print("FAT16");
|
||||||
|
default:
|
||||||
|
LOG_FILE.println(" - Consider formatting the SD Card with exFAT for improved performance.");
|
||||||
|
}
|
||||||
LOG_FILE.print("SPI speed: ");
|
LOG_FILE.print("SPI speed: ");
|
||||||
LOG_FILE.print(success_mhz);
|
LOG_FILE.print(success_mhz);
|
||||||
LOG_FILE.println("Mhz");
|
LOG_FILE.println("Mhz");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user