Tool/software: Code Composer Studio
Hello again,
I have a problem again with my custom bootloader that sits in FLashA. At the moment I just do a LongBranch to my main application when the bootloader finishes but that means, that I don`t deallocate the stack etc. so I try to use the .Init_boot section from the f28069_flash_kernel example.
What do I have to do to make my bootloader always start at .Init_Boot? Right now I have set the --entry_point in CCS to _Init_Boot. This is working when I debug from within CCS. But when I reset the F28062 the Bootloader does not run...
.Init_Boot also resists in FlashA.
So the question is, if I set the entry point in Code Composer Studio and build my project and generate the ASCII hex file with the hex Utility, is the entry point also compiled into the Output File?
If not, how do I modify the .cmd file to always jump to the .Init_Boot? I tried to set .InitBoot to BEGIN but this was completely ignored by CCS....
Thanks