I think I see where we misunderstood each other. For the fastest reaction time to something or very rapid bit banging, straight coding and polling has its merit.
For fixed output where timing relative to output instead of response to external stimulus is needed, there is time to take a handful of extra cycles to sync execution to a timer.
For example we can have a timer interrupt that runs a certain instruction from 15-18 cycles from interrupt source, or take a fixed 30 cycles from interrupt source, with the synchronizing. The pulse train in our output pins doesn't care about how many cycles it takes to enter interrupts, if there are enough cycles to spare. At 20 MHz one cycle is 50ns, so 5us is 100 cycles. Few PI detectors take continuous timing tighter than that.
For very rapid, 1-5us timing we are better off spending time in deterministic loops compared to interrupts. When running delays far longer than the synced interrupt takes, then it is better to use that interrupt. We rarely run into need for that or use a faster mcu though
If we want, of course, we can stop in the interrupt to do a string of delay loop timing. Its just rare to have continuous need for it.
For fixed output where timing relative to output instead of response to external stimulus is needed, there is time to take a handful of extra cycles to sync execution to a timer.
For example we can have a timer interrupt that runs a certain instruction from 15-18 cycles from interrupt source, or take a fixed 30 cycles from interrupt source, with the synchronizing. The pulse train in our output pins doesn't care about how many cycles it takes to enter interrupts, if there are enough cycles to spare. At 20 MHz one cycle is 50ns, so 5us is 100 cycles. Few PI detectors take continuous timing tighter than that.
For very rapid, 1-5us timing we are better off spending time in deterministic loops compared to interrupts. When running delays far longer than the synced interrupt takes, then it is better to use that interrupt. We rarely run into need for that or use a faster mcu though

If we want, of course, we can stop in the interrupt to do a string of delay loop timing. Its just rare to have continuous need for it.
Comment