Enable exFAT feature (#2437)

* enabled exFAT in ffconf
* added exFAT to sd card check
* solved todo
This commit is contained in:
Bernd Herzog 2024-12-20 07:55:39 +01:00 committed by GitHub
parent 55525ed4ad
commit 4ee00c0031
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 6 deletions

View file

@ -473,7 +473,7 @@ std::string SDCardDebugView::fetch_sdcard_format() {
case FS_FAT32:
resault = "FAT32";
break;
case FS_EXFAT: // TODO: a bug from filesystem can't detect exfat, issue not from here
case FS_EXFAT:
resault = "ExFAT";
break;
default: