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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
08/13/10 17:57
Read: times


 
#177995 - how to interpret "interrupts occuring at the same time
Responding to: ???'s previous message
Erik Malund said:
the 'priority list' (polling sequence) in the datasheets/bible only applies if the interrupts [b]occur at the same time[/b] and will NOT result in an interrupt interrupting another

It is not necessarily "the same time". The following may occur: let's have interrupts A, B and C, with the same *user assigned* priority (and *polling* priority in this order, A is highest); and let have interrupts P and Q of higher *user assigned* prority (their mutual *polling* priority is P>Q but it is irrelevant, how do they relate to *polling priorities* of A, B and C).

During ISR P, all triggers firing interrupts A, B and C occur (edge on pin for external interrupt occurs, character arrives to serial, timer overflows etc.). They cannot interrupt ISR of P, as they have lower *user assigned* priority; they wait until P ends. At that moment (more precisely, after one instruction of the originally interrupted level is executed), the interrupt processing machine takes a look at its pending interrupts, and based on the highest *polling* priority decides, that ISR A is going to be executed first.

Similarly, let's assume, in "main", interrupts are disabled for some time, during which triggers for all 5 interrupts occur. When the interrupts are re-enabled, the higher *assigned* priority interrupts are processed first, namely P and Q. Again, based on their *polling* priority, ISR P is executed first, ISR Q second, ISR A third, etc. (provided no other interrupts trigger in that time).

JW




List of 9 messages in thread
TopicAuthorDate
the "interrupt priority list"            01/01/70 00:00      
   latency calculation            01/01/70 00:00      
      but            01/01/70 00:00      
         Do I understand this correctly...            01/01/70 00:00      
            priority (IP) and 'polling sequence" (the chip)            01/01/70 00:00      
               how to interpret "interrupts occuring at the same time            01/01/70 00:00      
         sequence can't be influenced            01/01/70 00:00      
            no, it is 'random' because ..            01/01/70 00:00      
               latency calculation            01/01/70 00:00      

Back to Subject List