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,
I have bootloader and application ccs project merged into 1 hex file using load_image.
I have successfully merged it but the data in the cinit section of application side seems not loaded properly.
Bootloader .CINIT section is in 0x081000
Applicaiton .CINIT section is in 0x084000
Questions:
1. When _c_int00 is called in f28004x_codestartbranch.asm, which .CINIT section will be executed?
2. Can we merged it into same section? ex. Bootloader .cinit = 0x081000 and Application .cinit = 0x081000 also?
3. if we can merged it into same section, can you give example or reference?
Regards,
Jan
1. The corresponding section will be called. If you are calling from bootloader then bootloader section will be called.
2, no, this is not possible unless you make them in to a single project.