Forum : ARM
Original Post
Post Information | Post |
---|---|
March 10, 2011 - 7:29am
|
Hi, const uint8_t DataTable[] = {xx, xx, xx...}; in runtime is copied from the flash to the stack. This results in a reduction of available RAM. Cezary |
Hi,
You can either declare the array as static, or define it as global (outside from any function).
Best Regards,
Great!
It helps!
Thank you, Bruno
Life is full of surprises... ;)