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.

CCS/TDA2: TDA2X reading large data onto Memory

Part Number: TDA2

Tool/software: Code Composer Studio

Hi, I'm working on TI TDA 2x and my C program requires large data file to be loaded onto memory.

Originally in desktop, I loaded the required a file which is amount to 50~150MB binary data file(Most data is comprised of Integer) using fread(). But I'm afraid that the file maybe takes too long time to read in TDA board.

To be simply, my C code reads arrays including innumerable Integers amount to 50~150MB.

Is there a useful way to load large file? Is there someone who has experience about similar situation?

Thank you.

  • hello
    Yes this can be one option - where you embedded the data file (as arrays/constants) in the executable. But this will increases the binary size.
    Another option - you can use CCS to load the file into memory
    SD card read or network read are other options - these are supported in vision SDK 3.3 release

    regards, Shiju