Other Parts Discussed in Thread: OMAP-L138
I'm using OMAP-L138. I have an external array that I need to load. When this array is small enough it fits into shared memory but then it's huge, I get 'Out of memory' error as expected. I'm looking for a way to load the external array directly to 128MB mDDR.
To load my array into shared RAM i wrote:
const float YN[]={
#include "MYDATA.txt"
};
Is it possible?
Thanks.