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.

FEE Diagnostic Mode

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??