Hello,I would like to get free memory on USB drive (64GB, FAT32) with FatFs library. Here is part of my code: DWORD fre_clust, fre_sect;
uint64_t free_memory;
res_file = f_mount(&fs, "0:", 1);
res_file = f_getfree("0:", &fre_clust, &fs);
fre_sect =...