Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
08/17/06 12:47
Read: times


 
#122435 - Easiest scenario.
Responding to: ???'s previous message
One of the situations where the original question tends to pop up is one where you have some "stuff" that needs to be done after the interrupt occurs, but not inside the ISR since it takes too long and you need to allow other interrupts during this time.

A solution here is to put the "stuff" into a different, second ISR (one where you can trigger the appropriate interrupt by software) and set this interrupt to low priority. In the first ISR, you set the interrupt condition for the second ISR. Now other high-priority interrupts will be serviced, but the regular program execution is postponed until the second ISR is finished.


List of 10 messages in thread
TopicAuthorDate
PC redirect after interrupt            01/01/70 00:00      
   trick            01/01/70 00:00      
      Certainly tricky!            01/01/70 00:00      
         Why?            01/01/70 00:00      
   Why does this question keep popping up ?            01/01/70 00:00      
      I'll answer            01/01/70 00:00      
   Easiest scenario.            01/01/70 00:00      
      I doubt it            01/01/70 00:00      
   typical beginner question            01/01/70 00:00      
      Are you surte, I'm not            01/01/70 00:00      

Back to Subject List