Hi everybody :-)
I tried to insert 2 arrays of _iq elements in my source code, and each one of these arrays is 2000 elements long...since the compiler considers them as part of .ebss section, they cannot fit in M0SARAM (the dafault section for .ebss, in the cmd file), I tried to move the whole .ebss section from M0SARAM to H0SARAM (which is much larger), by substituting the following line:
.ebss : > M0SARAM, PAGE = 1
with the new line
.ebss : > H0SARAM, PAGE = 0
The build of the project was successful, but the program couldn't start correctly in my board (it halted in asm(' ESTOP') in USER11_ISR interrupt function, defined in DSP280x_DefaultIsr.c...).
Probably the .ebss section must stay where it is, in M0SARAM, as stated in the original .cmd file...but in this way there is 1kW limit to the size of my variables...
Is there a trick to go around the problem? Or maybe I am doing something wrong...
thankU
samuele