4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
22 lines
409 B
C
22 lines
409 B
C
#include "storage_sd_api.h"
|
|
|
|
const char* sd_api_get_fs_type_text(SDFsType fs_type) {
|
|
switch(fs_type) {
|
|
case(FST_FAT12):
|
|
return "FAT12";
|
|
break;
|
|
case(FST_FAT16):
|
|
return "FAT16";
|
|
break;
|
|
case(FST_FAT32):
|
|
return "FAT32";
|
|
break;
|
|
case(FST_EXFAT):
|
|
return "EXFAT";
|
|
break;
|
|
default:
|
|
return "UNKNOWN";
|
|
break;
|
|
}
|
|
}
|