This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2PXEVM: Linux: undefined reference to f_open

Part Number: TDA2PXEVM


Hi all

I want to read the data from filesystem either from sdcard or emmc

so in the usecase file chains_nullSrc_Display.c i have inluded files 

#include <ti/drv/stw_lld/fatlib/hsmmcsd_API.h>
#include <ti/drv/stw_lld/fatlib/fatfs/ff.h>

and in function  Void Chains_nullSrc_DecodeDisplay(Chains_Ctrl *chainsCfg) i have mentioned 

const TCHAR *filename = "t.txt";
FIL fp;
FRESULT fresult;

fresult = f_open (&fp,&filename, FA_CREATE_NEW);

The structures FIL , FRESULT are being called from ff.h without errors but f_open is showing "undefined reference to f_open"

Regards 

Pratik