x-cube-eeprom - EE_Init() can I remove the step 8 ?
function : EE_Status EE_Init(EE_Erase_type EraseType)
at the end write 0 in flash:
/*********************************************************************/
/* Step 8: Perform dummy write '0' to get rid of potential */
/* instability of line value 0xFFFFFFFF consecutive to a */
/* reset during write here */
/* Only needed if recovery transfer did not occured */
/*********************************************************************/
if (recoverytransfer == 0U)
{
status = VerifyPagesFullWriteVariable(0U, 0U);
I have got problem with my system where there are frequently reset. These sometimes cause an ECCD error.
For this reason I'd like to remove this step.
What do you suggest ?
