2011-04-15 01:07 AM
Interupt Fault line 99
2011-05-17 05:31 AM
Can you be more specific? The term ''Interrupt Fault line 99'' doesn't mean much to me.
If an interrupt is left uncleared, you will end up with an ''interrupt storm'' where the M3 continually tail-chains in interrupt context. Break the execution in the debugger, and look at the processor, NVIC and peripheral states. When faults aren't handled, you'll get dumped into the Hard Fault Handler. To troubleshoot it is best to have a proper Hard Fault Handler that can provide diagnostic information about the problem rather than an infinite loop. Look at some of the code Joseph Yiu has published for interpreting the processor state, faulting instruction pointer, etc.