Hi,
Is there a way to declare different kind of array in the same Shared Memory?
For example:
int firstarray[20];
float secondarray[20];
#pragma DATA_SECTION(firstarray,"SHARERAMS2");
#pragma DATA_SECTION(secondarray,"SHARERAMS2");
But this is not working.
Thank you,
Marc