I have a text file that I am reading using CCS using the function fscanf(). I can only read couple of values in the txt file and after that the fscanf function does not successfully read data from the txt anymore.
Here is the fscanf statement: SCAN_COUNT = fscanf(file, "%f", &value);
Questions:
1) Shouldn't fscanf work?
2) Is there a document identifying what standard C functions that can be used with CCS.
3) Is there a more effective way to read a file (large memory size) from the computer into the processor memory using CCS?
Thanks!