Other Parts Discussed in Thread: C2000WARE, CONTROLSUITE
Tool/software: Code Composer Studio
hi when i m trying to load the program in flash memory of tms28337 processor i am getting following problem
C28xx_CPU1: File Loader: Data verification failed at address 0x00080000 Please verify target memory and memory map.
C28xx_CPU1: GEL: File: C:\CCSV6 Programs\dqsvm28377\Debug\dqsvm28377.out: a data verification error occurred, file load failed.
i m using ccs6.0 version of ccs . i read also other thread related to this issue .should i have to reinstall ccs6.02 version for fixing flash related issue
im ussing memcopy function for load starting address
void MemCopy(Uint16 *SourceAddr, Uint16* SourceEndAddr, Uint16* DestAddr)
{
while(SourceAddr < SourceEndAddr)
{
*DestAddr++ = *SourceAddr++;
}
return;
}
i m able to run program with RAM. and in flash with tms28335 processor.
