Part Number: TMS320F280039C
Other Parts Discussed in Thread: C2000WARE, UNIFLASH
Dear Champs,
In C:\ti\c2000\C2000Ware_4_02_00_00\device_support\f28003x\common\cmd\28003x_generic_flash_lnk_crc.cmd,
1. What is below statement used for? When the user comment this line, there is a warning like this.
"Description Resource Path Location Type
#10247-D creating output section ".TI.memcrc" without a SECTIONS specification SWFW_ServerPSU C/C++ Problem"
Does it matter?

2. For checksum generation on CCS beside the .out file, is the above .TI.memcrc statement required besides below statements? That is, can I just use below for checksum calculation without the above .TI.memcrc statement?
#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 20012000
GROUP { /* GROUP memory ranges for crc/checksum of entire flash */
#endif
#endif
...
#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 20012000
} crc(_ccs_flash_checksum, algorithm=C28_CHECKSUM_16)
#endif
#endif