Hello,
I have integrated SafeTI to my system. In our system after poweron I run SL_SelfTest_SRAM(SRAM_ECC_1BIT_FAULt_INJECTION,TRUE,&sram_stResult) and found that the result of this funciton was always FLASE.
Then I entered this function and found that the program exited from the following return statement.
/**********************************************************************************/
/* If nERROR is active then do not proceed with tests that trigger nERROR */
if(SL_ESM_nERROR_Active()){
SL_Log_Error(FUNC_ID_ST_SRAM, ERR_TYPE_ENTRY_CON, 3U);
return(retVal);
}
/**********************************************************************************/
After retun I read esmReg->SR[2] and it was 128 that means GR3.7 error has occurred.
so I want to know when the GR3.7 ESM error occurs and how to solve this problem.
Please help, and Thanks.