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