Hi...
Is there any way to declare large size of array?
example:
char arr[200*1024];//200kb
Thanks
Not as an automatic variable. use static or externally linked variables, assuming you have enough RAM. Note that an LPC2468/78 has only 98 KB internal RAM...
const char arr[200*1024]; //200kb
If it is a constant array, it can be put into internal flash with the keyword const.
View all questions in Keil forum