Hi,
I'm trying to implement a software reset to reinitialize all my systems. To simplify this, I thought about using the watchdog to trigger a reset on the controller. By default, watchdog is disabled. When I detect a reset condition, here's the code I call :
//Enable watchdog EALLOW; SysCtrlRegs.WDCR= 0x0028; EDIS; //Kill controller for(;;);
When I'm hooked with the debugger and I get there, it resets to 0x3FF599, saying No source available for "0x3FF599". If I resume, it stays stuck there.
I'm not sure what I'm missing... From what I found on E2E, it could be stuck in Boot Rom...
Also, while trying to connect on the fly to the target, it was doing the same kind of error. The OnTargetConnect in the GEL file does a Reset on the DSP. I guess the action of resetting isn't working correctly at all...
Any help will be appreciated.
Regards,