Hello
I have a mp3-player with this FatFs. After upgrading it to this latest version, my Player doesn't play anymore.
The reason is this part:
while (((res = f_readdir(&dirs, &Finfo)) == FR_OK) && Finfo.fname[0]) { if ( strcmp(&Finfo.fname[(strlen(Finfo.fname)-4)],".mp3")==0 ){ play_file(Finfo.fname); }
It worked before. Of course sth. has changed in the FatFs-Structures. I checked the FILINFO-structure, but there is no difference between the fname-parts.
Do you guys have any idea, where the error could be?
Thanks and Regards