Tool/software: Code Composer Studio
I was guided to this location:
CCS Help(Help -> Help Contents -> Code Composer Studio Help -> Views and Editors -> Memory View -> Data File Formats)
And found memory data can be saved to host computer and loaded from for processing.
Does it means when I have the save and load setting set to the same file and memory location set then I can use it for program memory or heap storage?
For example:
Int16 *heapMemory = (Int16 *) malloc(48000 * sizeof(Int16)); //This memory is allocated in the host computer when the device memory is used up?
Thanks so much!!!! If I am wrong please guide me to the correct answer :))))