Tool/software:
I configured the linker to produce memory CRC on a few sections, as described in the manual TMS320C28x Assembly Language Tools, in Appendix C.
The code (as in the attached minimal project) is mostly a copy of the manual one, with a few changes.
That worked fine, until the section under test included the testing code itself, producing a wrong CRC.
I considered if my (small) changes to the original code were disruptive. However, the results were always correct in the other memory sections, and also when working on the same set of binary data on a PC version.
How to test it:
ref_check_CRC()
before/after the gen_crc()
call, that is used on each of the CRCs generated by linker: on error, the resulting CRC is different from the expectedNote that:
#pragma SET_CODE_SECTION(".crc_code")
that when enabled moves the CRC calculation in another section: this makes the CRC on .text
section workDoes anybody spot any colossal mistake that I overlooked in my example?
I'm assuming the breakpoint added was a software breakpoint. Can you try with a hardware breakpoint? A SW breakpoint will swap out an instruction with an ESTOP instruction. It is all done behind the scenes by CCS but if you are reading the memory directly it could be picked up as an ESTOP instead. A HW breakpoint monitors the program bus instead of swapping in an instruction.