Reset


//Reset to 0x0000:
SoftReset(); 

Did Watchdog reset occur


if (ReadEventWDT())
//WDT reset has occurred

Generating Reset in Code

If you want to use your own code as an alternative to the C32 SoftReset function the following can be used instead:


void software_reset(void)
{
   int t;

   //Unlock system
   SYSKEY=0;
   SYSKEY=0xaa996655;
   SYSKEY=0x556699aa;

   //Do the reset
   RSWRSTSET=1;    //enable software reset
   t=RSWRST;          //reset the software enable bit to force the actual reset
   while(1);
}

 

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *