Hi,
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
Hi,
It's possible. Please follow through http://processors.wiki.ti.com/index.php/C5515_Boot-Image_Programmer.
Regards,
Hyun
Yes, it is possible, as long as you use NOR flash. You need to skip on-flash sections when creating the boot image, and flash those sections separately.
Cheers,
Cong-Van
Brian Willoughby said:Perhaps there is no need for me to say the following, but none of this will work with serial Flash.
Even NAND flash, which is "parallel" flash, does not work, too. The program fetcher only loads code from synchronous memories (e.g. NOR flash, SDRAM, SRAM).
@HRi: you can use hex55 with SECTIONS directive.
HRi,
"If you use a SECTIONS directive, the utility converts only the sections that you list in the directive and ignores all other sections in the COFF file."
You need to run hex55 twice:
1- Creating boot image: run hex55 (with -boot option) and use -exclude to skip on-flash sections.
2- Creating "on-flash" image: run hex55 (without -boot option) and use SECTIONS directive to convert only on-flash sections.
Then you need to combine 2 .bin files with appropriate padding, then burn to NOR flash.
Cheers,
Cong-Van