|
//****************************************************************//<br />// This is the code that gets called when the processor receives a fault<br />// interrupt. This simply enters an infinite loop, preserving the system state<br />// for examination by a debugger.<br />//<br />//*****************************************************************************<br />static void<br />FaultISR(void)<br />{<br /> //<br /> // Enter an infinite loop.<br /> //<br /> while(1)<br /> {<br /> }<br />} |
|