This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

APP TIMER INTERRUPT AND GPIOTE INTERRUPT DOUBTS

HI ,

  • In our project we are using multiple gpiote and app timer interrupt.
  • SDK we are using is 15.3

DOUBTS

  • If both  gpiote and  app timer interrupt trigger simultaneously(at same time) ,code execution enter to which handler first gpiote or timer (note :- both priority are same)?
  • if both gpiote and  app timer interrupt trigger simultaneously,Is any of these interrupt ignore if so which one?

PLEASE REPLY TO MY TWO DOUBTS. 

   

Parents
  • Hi Nandu, 

     

    If both  gpiote and  app timer interrupt trigger simultaneously(at same time) ,code execution enter to which handler first gpiote or timer (note :- both priority are same)?

    From the nRF's perspective, one of the interrupts will occurs first and then the second will occur while the IRQ handler of the first is being executed.  If this happens then a pending IRQ flag will be set in the nested vectored interrupt controller (NVIC) of the Arm Cortex M4, since both have the same IRQ priority the second interrupt will not pre-emt the first one. When the IRQ handler of the first interrupt returns, then the CPU will check if there is a pending IRQ and process that before returning to mains context. 

    if both gpiote and  app timer interrupt trigger simultaneously,Is any of these interrupt ignore if so which one?

     See the first answer. 

    Best regards

    Bjørn

Reply
  • Hi Nandu, 

     

    If both  gpiote and  app timer interrupt trigger simultaneously(at same time) ,code execution enter to which handler first gpiote or timer (note :- both priority are same)?

    From the nRF's perspective, one of the interrupts will occurs first and then the second will occur while the IRQ handler of the first is being executed.  If this happens then a pending IRQ flag will be set in the nested vectored interrupt controller (NVIC) of the Arm Cortex M4, since both have the same IRQ priority the second interrupt will not pre-emt the first one. When the IRQ handler of the first interrupt returns, then the CPU will check if there is a pending IRQ and process that before returning to mains context. 

    if both gpiote and  app timer interrupt trigger simultaneously,Is any of these interrupt ignore if so which one?

     See the first answer. 

    Best regards

    Bjørn

Children
No Data
Related