??? 04/10/09 18:14 Read: times |
#164523 - Still delays in the ISR? Responding to: ???'s previous message |
How come your interrupt takes close to 1ms if you only handle one phase/interrupt? That must imply that you still have some form of delays in the ISR.
As long as the ISR is faster than 1ms and you do not turn off interrupts anywhere, then the polled serial handling should never be able to interfere with your single ISR. As long as the ISR leaves a bit of time for the main loop, then the ISR should not interfere with your polled handling of the serial data. |