LM3S6965 crashes in hibernate
While poking around in the hibernate module, using the driver lib code supplied with the LM3S6965 Ethernet Eval Board, I find the code hitting the FaultISR exception when I attempt to save processor state using HibernateDataSet(). The culprit is the line below:
| Code: |
//
// Add a delay between writes to the data area.
//
if(CLASS_IS_FURY)
{
//
// Delay a fixed time on Fury-class devices
//
>>> Dies here> SysCtlDelay(g_ulWriteDelay);
}
|
The actual assembly code that hits the exception is shown below in the disassembly:
if(CLASS_IS_FURY)
00002B7C 4808 LDR R0, [PC, #0x20]
so it necer gets to the delay routine.
I am using the setup code that came with the enet_lwip example project.
login or register to reply
|