Tool/software: TI C/C++ Compiler
PRAGMA(SET_CODE_SECTION("ext_data_ram"))
char *p_strings[] =
{
"foo",
"bar",
};
where "ext_data_ram" is the external DDR memory.
The problem is that the pointers go into external memory but the strings themselves wind up in internal memory which wastes memory space.
Any suggestions on how to get both the pointers and strings into external memory?