i write data in FEMU_xxxx registers (ECC Data Correction Mode 1)
FEMUADDR=0xF0200004u
flashWREG->FEMUDMSW =0U;// most significant data ,64 bit
flashWREG->FEMUDLSW = 0U;// least significant data ,64 bit
ecc = flashWREG->FEMUECC;
flashWREG->FEMUDLSW = FEE_TEST_DATA ^ BIT(FEE_ERROR_POS);// cause one or two bit error
the i enable diagnostic mode
flashWREG->FEMUECC = ecc;
and trig the diag, i found flashWREG->FEMUDLSW data is corrected ,but no error register is flaged???why??