Tool/software: Code Composer Studio
Again a question about the checksum generation (CRC). As I have recognized CRC calculation is not supported by the linker tool set as it was with the IAR Embedded Workbench. There I could just say:
- Fill pattern: 0xff
- CRC32: (0x4C11DB7)
and that was it.
IAR workbench:
The debug and release output consists of this CRC. Now with the CCS there is no such option to generate the CRC. But I read that SRecord does the same job for HEX files. I just put that to a post processing job of Eclipse CCS. That is fine for me but, when I want to generate debug code, and the CRC is not been calculated then my bootloader will not at all start the application code.
How can I fill the CRC (best with the same polynome: 0x4C11DB7) into the debug binary that CCS compiles

