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.

TMS570LS3137: about crc_table application

Part Number: TMS570LS3137

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

...

..

}