Dear
I am working in tms320c6418 evm with CCS v3.3. During C program in CCS, i have faced problem when i declare array size greater than 500 (exam- feedback[550] ). If i define array size below 500, printf() function for print for the total array values, it is printing ok. But when define array size above 500, this printf() function is not work.
There have any limitation for declaration array size in tms320c6418 evm ? I have required maximum array size to store my values. if have any other way to store values for using my program,kindly suggest me.
Here i am showing my sample test code below ..
void main()
{
int i=0, loop=0;
long int feedback[550];
for(loop=0;loop<550;loop++)
{
feedback[loop]=loop * 2;
printf("%d %ld\n", loop, feedback[loop]);
}
}
If any body knows this answer, kindly inform me.
Regards
Gopal Sarkar