Tool/software: Code Composer Studio
Hello,
I’m trying to load a raw binary file into flash, using CCS 8.3.0. Searching online throws up a lot of posts, but they are not really helping me. Also I feel it ought to be easy to just ask CCS to load values from a file to memory (flash) starting at some address.
I have tried GEL_MemoryLoad(0x3E8000, 0, 0xC000, "C:\\Build\\test.bin", 16) but get:
C28xx: Data verification failed at address 0x3e8000
LoadOFP() cannot be evaluated.
Data verification failed at address 0x3e8000
And even tried:
GEL_MapOn();
GEL_MapAdd(0x3E8000,0,0xC000,1,1);
GEL_MemoryLoad(0x3E8000,0,0xC000,"C:\\Build\\test.bin",16);
GEL_MapReset();
But with the same result.
I’m not really sure what I’m doing (as may be clear). I find the GEL help fairly minimalist and don’t know where to look for more detailed help.
If I got the above right, I’m trying to load to Flash sectors D-B. They are already erased (CCS reports all 0xFFFF)
Is it possible to do this via GEL or another way?
Regards, Giles