Tool/software: Code Composer Studio
I am trying to increase how much ram I can use but to no avail. I am not really sure which of the RAML1 to 7 I am supposed to increase and I have tried increasing a few of their length = 0x001000 to 0x002000 but nothing has changed or am I supposed to somehow tell the cmd which RAM I want to use?
I am still experimenting with the 28335_RAM_lnk.cmd file that was provided in the CCS project. I want to know how much of the ram I can use too.
Below is an example code I used to test the current memory limits.
int main(void)
{
//float data[512];
int i[30101];
int j;
float a[17716];
i[2] = 0;
j = 6;
a[2] = 0.1;
i[2] = j + i[2] + 1;
j = i[2] + (int)(a[2]);
return i[2];
}
I am very inexperienced in terms of coding and dsp programming, would appreciate the help a lot.