Other Parts Discussed in Thread: C2000WARE
https://e2e.ti.com/support/microcontrollers/c2000/f/171/t/619616
Hello,
I found the thread above.
I'm trying to read 0x3e8000-0x3fffff from F28069, and convert it to HEX.
But it is not successful for me.
Could you please point out my fault?
Procedure:
- A C2000Ware sample project [flash_f28069] was built and executed in CCS debug.
- The memory range 0x3e8000-0x3fffff was saved as [ccsread.out]
- the OUT file was handed to the hex2000.exe as the command file like:
>>>>>>>>>>
ccsread.out
--ti_txt
ROMS
{
A: origin=0x007d0000, len=0x30000
}
SECTIONS
{ .text, .data, .cinit, .sect1, .vectors, .econst:
}
<<<<<<<<<<
---- The hex2000.exe didn't generate files but just responsed:
>>>>>>>>>>
C:\ti\_\hex2000>hex2000 180605b.cmd
warning: section .text not found in (ccsread.out)
warning: section .cinit not found in (ccsread.out)
warning: section .sect1 not found in (ccsread.out)
warning: section .vectors not found in (ccsread.out)
warning: section .econst not found in (ccsread.out)
Translating to TI-TXT format...
"ccsread.out" .data ==> .data
warning: section ccsread.out(.data) at 07d0000h falls in unconfigured memory
(skipped)
<<<<<<<<<<
I attached some files and images:
My goal:
It is to merge or combine a couple of HEX files to a single HEX.
The linked thread was the only way which I found.