FR_NO_FILESYSTEM, (13) There is no valid FAT volume
res = disk_initialize(0);
printf("disk_initialize returned: %d\n", res);
if (res != RES_OK) {
printf("Disk initialization failed!\n");
v = 8;
} else {
fres = f_mount(&fs, "", 1);
printf("mount returned: %d\n", fres);
if (fres == FR_OK) {
printf("Filesystem mounted successfully!\n");
v = 5;
} else {
printf("Filesystem mount failed!\n");
v = 9;
}
}
got intiailization correct and i tryed f_mks and format the flash ic .
but still occur filemount issue. got no idea where the issue come from . no bug or error .
i see this on debug window
anyone have any idea?
