??? 04/01/10 13:14 Read: times |
#174743 - The point is... Responding to: ???'s previous message |
You said that the reason you can't update the Watchdog in your main loop is because of this big loop while it busy-waits to send each character.
Using the ring-buffer & interrupts obviates the need for all that busy-waiting; the application no longer "stalls" while it sends all the characters. Thus using the ring-buffer & interrupts should allow you to update the watchdog in your main loop! QEF. |