do you have advice about how to add L2RAMW ECC to the linker file for the TMS570LC43x?
the address range 0x08400000 - 0x08480000 appears to be invalid in the Lauterbach memory dump. And I'm getting a dataEntry interrupt at the last line of this code spinet. spnu540 seems to say that Data ECC in SRAM is mandatory, so why is the ECC range of L2RAMW invalid?
// Clear any previous diagnostic errors status bits [22,21,20,19,12,11,10, 4] - required before trigger
BIT_SET(L2RAM_REG->RAMERRSTATUS, L2RAM_RAMERRSTATUS_CLRALL);
sramEccTestBuff[2] = 0U;
eccB1 = &sramEccTestBuff[2];
eccB1_ECC = eccB1 + (0x00400000u/sizeof(uint64));
/* Write test vectors */
L2RAM_REG->DIAGDATAVECTOR_H = BF_GET((sramEccTestBuff[2]), 32, 32);
L2RAM_REG->DIAGDATAVECTOR_L = BF_GET((sramEccTestBuff[2]), 0, 32);
L2RAM_REG->DIAG_ECC = (uint32)(0x000000FF & ((*eccB1_ECC) ^ (uint8)L2RAM_SYN_2BIT_DATA_ECC));