??? 10/17/06 11:46 Read: times |
#126559 - ISRs Responding to: ???'s previous message |
If the CPU can not handle them as fast as I expect, probably I want to use another processor ARM7 or something.
Make sure your program follows the general guideline of KISS (Keep ISR Short and Simple) before you switch to a (possibly more expensive) MCU. Your '51 could be twiddling its digital thumbs 99% of the time, but if there is too much work crammed into one of the (or both) ISRs, it might miss the other interrupt because of too much latency. |