Hello
Team
I use the crc_table command to produce the crc64 value in the cmd, that is ok.
SECTIONS
{
.intvecs : START( ulFlashStartAddr ) {} > VECTORS
.text : {} > FLASH0
.const : END( ulFlashEndAddr )
{} > FLASH0
...
..
}
But I want to the crc64 value is the ulFlashStartAddr to ulFlashEndAddr.
I use the this below code,the range is the text range.how write the code ,that can make the crc range I can change
SECTIONS
{
.intvecs : START( ulFlashStartAddr ) {} > VECTORS
.text : {} >palign=8,crc_table(_my_crc_table,algorithm=TMS570_CRC64_IOS)> FLASH0
.const : END( ulFlashEndAddr )
{} > FLASH0
...
..
}