Hi
I am familiar with how to define an array that is to placed in a specific area of memory. For example:
const unsigned MY_TABLE_SIZE=1024;
#pragma DATA_ALIGN(4);
#pragma DATA_SECTION(".ddr_table")
unsigned myTable[MY_TABLE_SIZE];
Is it possible to automatically size the array to fit an entire section?
I am thinking of something like:
const unsigned MY_TABLE_SIZE = DATA_SECTION_SIZE(".ddr_table");
#pragma DATA_SECTION(".ddr_table")
unsigned myTable[MY_TABLE_SIZE];
Best regards
David