??? 07/21/04 12:27 Read: times |
#74563 - RE: infinite loop error trapping Responding to: ???'s previous message |
One error condition that is very probable is trapping within an infinite loops
That is not a watchdog issue. The common code while (flag == 0); should be replaced by marker = TRUE; for (timer=maxtime; timer4!=0; timer--) if (flag == 1) { marker = FALSE; break; ) if (marker) { error(); } Erik |