SSD driver C90FL_INFO_EER

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

SSD driver C90FL_INFO_EER

448 Views
bjrajendra
Senior Contributor I

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
   

ECC2.png

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

0 Kudos
0 Replies