Hi All,
We are evaluating the TDA2x_Evm board for one project.We are using the vision SDK3.0(Bios only) for the development.we are new for this SOC.and we have basic idea of link and chain framework.
My demo application contains following usecase chain.
UseCase: chains_sdcard_Display
NullSource (IPU1_0) -> Display
if i directly using the fatfs APIs,all the APIs are defined under
#if ( defined(FATFS_PROC_TO_USE_IPU1_0) && defined(BUILD_M4_0) ) || \
( defined(FATFS_PROC_TO_USE_IPU1_1) && defined(BUILD_M4_1) ) || \
( defined(FATFS_PROC_TO_USE_IPU2) && defined(BUILD_M4_2) ) || \
( defined(FATFS_PROC_TO_USE_A15_0) && defined(BUILD_A15) )
static void File_lock(void);
static void File_unlock(void);
static Int32 File_allocObj();
static Void File_freeObj(Int32 fd);
static Void File_registerCioFxns();
so how to use this APIs in my application?
But i have following queries.
1) How to read and write to the sd card using NullSrc link?
2) I want to read the text file from the sd card and give this to the algortihm link.so i how to do this?what shoulbe the apporoach for this?
3) I am not able to find any existing use case for sd card read and write.
Any help will be highly appreciated.
Thanks and regards