Hi, i'm trying to use FatFs library to read/write on uSD.
My actual code is this:
FATFS Fatfs; /* File system object */ FIL file1; f_mount(&Fatfs, "0:", 0); f_open(&file1, "test.txt", FA_OPEN_EXISTING | FA_READ);
f_mount return FR_OK but f_open return always FR_NOT_READY.
I use a SD card of 4GB from Kingston which is a microSD in an SD adaptator which is linked to my DSC.
What can I do ? Thanks