Hi,
I am working with EVM eZdsp F28335
I have a question re the external memory usage.
Is it possible to define a global variable on the external memory and initialize it with a const.
For example:
Const real_32_T var[3] = {1, 2, 3};
#pragma DATA_section(var, "MATHDATA")
The thing I'm missing out on, is the fact that the external memory is initialized upon power up on the main function, but the global are compiled to be located on the external memory before the memory actually exist.
What is the correct way to perform such variable definition(if possible)?
Thanks for helping,
Ilana.