I am trying to use other functions within FATFS per example f_findfirst file on the flash and keep getting undefined reference.
I used the example application usbdc_msc which is able to list the directory and read open a file but for some reason the other functions are not working.
void fatfs_find_image_file (void)
{
FRESULT fr; /* Return value */
DIR dj; /* Directory search object */
FILINFO fno; /* File information */
fr = f_findfirst(&dj, &fno, "", "*.jpg"); /* Start to search for photo files */
NRF_LOG_ERROR("%s\n", fno.fname);
// while (fr == FR_OK && fno.fname[0]) { /* Repeat while an item is found */
// printf("%s\n", fno.fname); /* Display the object name */
// fr = f_findnext(&dj, &fno); /* Search for next item */
// }
f_closedir(&dj);
}