??? 04/05/09 17:40 Read: times |
#164358 - Do ms-class delays in any interrupt. Responding to: ???'s previous message |
You should not do delays in the timer ISR. If a step is four phases, you should run the timer at four times the speed, and do one phase for each interrupt.
Your ISR may not do more than a couple of NOP as delay. Quick in and quick out, to reserve the majority of the time for the main application. |