Hi,
I'm trying to generate CRC using the linker directive crc() operator for each flash sector of my app code and reading the same in the bootloader application and verifying it during the bootload process. I have placed the CRC table in a separate memory location which is placed above the application code. I'm able generate the CRC table and read the same but I found that the tables are placed in the memory at random i.e. they are not continues. My approach was to receive a sector of data verify its CRC and then proceed to the next sector, but since the CRC tables seems to be not contiguous I always end up having a CRC error as the C generated CRC in the bootloader application is calculated for contiguous sectors. I found that the CRC tables are not contiguous by loading all the CRC tables into an array and checking the address field of each table.
My question is am I right in assuming that the linker will generate the CRC and place those tables in memory in a non-contiguous manner? Cause I read this in one of the example in spru513w;
In Example 8-9 the same identifier, _my_crc_table_for_a1_and_c1, is specified for both a1.c.obj and c1.c.obj.
The linker creates a single table that contains entries for both text sections. Multiple CRC algorithms can occur in
a single table. In this case, _my_crc_table_for_a1_and_c1 contains an entry for the text data from a1.c.obj using
the default CRC algorithm, and an entry for the text data from c1.c.obj using the CRC16_802_15_4 algorithm.
The order of the entries is unspecified.