Hello all,
I'm using MPC5602P on my CW2.9, and I used SSD drivers for flashing application. WorkAroundInit( &ssdConfig ); function is giving an error of C90FL_INFO_EER, which means there is an double error detection. And as per manual
I cleared the EER bit. I just wrote a code like this.
ret = WorkAroundInit( &ssdConfig );
if ( C90FL_OK != ret )
{
if(ret=0x02 | CFLASH.MCR.B.EER==1)
{
CFLASH.MCR.B.EER=0;
}
else
{
ErrorTrap(ret);
}
}
Is there any precautions & additional measures I need to take care before performing the erase & flash operation.
Thanks in advance,
Raju