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...
"Not as an automatic variable."
Surely that just depends upon the size of the stack you've allocated, which (of course) would be limited to the amount of physical storage.
Not that I'd recommend having such a large stack.
View all questions in Keil forum